[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:36 UTC 2016


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

The following commit has been merged in the master branch:
commit 049eb4d42998b3fee0a351b2d11d7d3305161086
Author: George Goldberg <grundleborg at googlemail.com>
Date:   Mon Jul 27 21:27:44 2009 +0000

    Add pure virtual methods to AbstractAccountUi to get the actual parameter widgets.
    
    svn path=/trunk/playground/network/telepathy-accounts-kcm/; revision=1003230
---
 src/libkcmtelepathyaccounts/abstract-account-ui.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/libkcmtelepathyaccounts/abstract-account-ui.h b/src/libkcmtelepathyaccounts/abstract-account-ui.h
index ed59378..e1d443f 100644
--- a/src/libkcmtelepathyaccounts/abstract-account-ui.h
+++ b/src/libkcmtelepathyaccounts/abstract-account-ui.h
@@ -23,10 +23,13 @@
 
 #include <kdemacros.h>
 
+#include <QtCore/QList>
 #include <QtCore/QMap>
 #include <QtCore/QObject>
 #include <QtCore/QVariant>
 
+class AbstractAccountParametersWidget;
+
 class KDE_EXPORT AbstractAccountUi : public QObject
 {
     Q_OBJECT
@@ -39,6 +42,9 @@ public:
     virtual const QMap<QString, QVariant::Type> &supportedMandatoryParameters() const;
     virtual const QMap<QString, QVariant::Type> &supportedOptionalParameters() const;
 
+    virtual AbstractAccountParametersWidget *mandatoryParametersWidget() const = 0;
+    virtual QList<AbstractAccountParametersWidget*> optionalParametersWidgets() const = 0;
+
 protected:
     virtual void registerSupportedMandatoryParameter(const QString &name, QVariant::Type type);
     virtual void registerSupportedOptionalParameter(const QString &name, QVariant::Type type);

-- 
ktp-accounts-kcm packaging



More information about the pkg-kde-commits mailing list