[SCM] ktp-accounts-kcm packaging branch, master, updated. debian/15.12.1-1-1157-gc4589c5

Maximiliano Curia maxy at moszumanska.debian.org
Fri May 27 23:57:04 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-accounts-kcm.git;a=commitdiff;h=a84dd37

The following commit has been merged in the master branch:
commit a84dd37c2bd7ef4fff43f16b69877880550ce8a4
Author: George Goldberg <grundleborg at googlemail.com>
Date:   Sun Jan 25 14:05:00 2009 +0000

    Add compileable stub KCM implementation.
    
    svn path=/trunk/playground/network/telepathy-accounts-kcm/; revision=916540
---
 src/CMakeLists.txt             |  1 +
 src/kcm-telepathy-accounts.cpp | 43 ++++++++++++++++++++++++++++++++++++++++++
 src/kcm-telepathy-accounts.h   | 38 +++++++++++++++++++++++++++++++++++++
 3 files changed, 82 insertions(+)

diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 754ef8f..badaf8b 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -5,6 +5,7 @@ include_directories (${CMAKE_CURRENT_BINARY_DIR}
 )
 
 set (telepathy_accounts_kcm_SRCS
+     kcm-telepathy-accounts.cpp
 )
 
 kde4_add_ui_files (telepathy_accounts_kcm_SRCS
diff --git a/src/kcm-telepathy-accounts.cpp b/src/kcm-telepathy-accounts.cpp
new file mode 100644
index 0000000..00a296b
--- /dev/null
+++ b/src/kcm-telepathy-accounts.cpp
@@ -0,0 +1,43 @@
+/*
+ * This file is part of telepathy-accounts-kcm
+ *
+ * Copyright (C) 2009 Collabora Ltd. <http://www.collabora.co.uk/>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#include "kcm-telepathy-accounts.h"
+
+#include <kgenericfactory.h>
+
+
+K_PLUGIN_FACTORY(KCMTelepathyAccountsFactory, registerPlugin<KCMTelepathyAccounts>();)
+K_EXPORT_PLUGIN(KCMTelepathyAccountsFactory("telepathy_accounts", "kcm_telepathy_accounts"))
+
+
+KCMTelepathyAccounts::KCMTelepathyAccounts(QWidget *parent, const QVariantList& args)
+ : KCModule(KCMTelepathyAccountsFactory::componentData(), parent, args)
+{
+    // TODO: Implement me!
+}
+
+KCMTelepathyAccounts::~KCMTelepathyAccounts()
+{
+    // TODO: Implement me!
+}
+
+
+#include "kcm-telepathy-accounts.moc"
+
diff --git a/src/kcm-telepathy-accounts.h b/src/kcm-telepathy-accounts.h
new file mode 100644
index 0000000..219d0bd
--- /dev/null
+++ b/src/kcm-telepathy-accounts.h
@@ -0,0 +1,38 @@
+/*
+ * This file is part of telepathy-accounts-kcm
+ *
+ * Copyright (C) 2009 Collabora Ltd. <http://www.collabora.co.uk/>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#ifndef TELEPATHY_ACCOUNTS_KCM_KCM_TELEPATHY_ACCOUNTS_H
+#define TELEPATHY_ACCOUNTS_KCM_KCM_TELEPATHY_ACCOUNTS_H
+
+#include <kcmodule.h>
+
+class KCMTelepathyAccounts : public KCModule
+{
+    Q_OBJECT
+
+public:
+    explicit KCMTelepathyAccounts(QWidget *parent = 0,
+                                  const QVariantList& args = QVariantList());
+    ~KCMTelepathyAccounts();
+
+};
+
+#endif // header guard
+

-- 
ktp-accounts-kcm packaging



More information about the pkg-kde-commits mailing list