phonesettings/cpphonesettingsplugins/callsplugin/src/cpcallsplugin.h
changeset 22 6bb1b21d2484
parent 21 92ab7f8d0eab
child 51 f39ed5e045e0
--- a/phonesettings/cpphonesettingsplugins/callsplugin/src/cpcallsplugin.h	Fri Mar 19 09:28:42 2010 +0200
+++ b/phonesettings/cpphonesettingsplugins/callsplugin/src/cpcallsplugin.h	Fri Apr 16 14:58:25 2010 +0300
@@ -17,28 +17,28 @@
 #ifndef CPCALLSPLUGIN_H
 #define CPCALLSPLUGIN_H
 
-#include <cppluginplatinterface.h>
+#include <cpplugininterface.h>
 
 
 /*!
     \class CpCallsPlugin
     \brief The class CpCallsPlugin implements call settings functionality. 
  */
-class CpCallsPlugin: public QObject,public CpPluginPlatInterface
+class CpCallsPlugin: public QObject,public CpPluginInterface
 {
     Q_OBJECT
-    Q_INTERFACES(CpPluginPlatInterface)
+    Q_INTERFACES(CpPluginInterface)
 public:
     
     CpCallsPlugin();
     
     ~CpCallsPlugin();
 
-    /*!
-     From CpPluginPlatInterface.
-     @see CpPluginPlatInterface.
-     */    
-    virtual CpSettingFormItemData *createSettingFormItemData(
-            CpItemDataHelper &itemDataHelper) const;
+    /**
+     * From CpPluginInterface
+     * @see CpPluginInterface.
+     */
+    QList<CpSettingFormItemData*> createSettingFormItemData(
+        CpItemDataHelper &itemDataHelper) const;
 };
 #endif // CPCALLSPLUGIN_H