[Kst] branches/work/kst/pluginify/kst/src

Adam Treat treat at kde.org
Tue Sep 5 20:00:55 CEST 2006


SVN commit 581214 by treat:

No reason for this yet.


 M  +1 -1      libkstmath/kstdataobject.cpp  
 M  +1 -1      libkstmath/kstdataobject.h  
 M  +1 -1      plugins/testplugin/testplugin.cpp  


--- branches/work/kst/pluginify/kst/src/libkstmath/kstdataobject.cpp #581213:581214
@@ -33,7 +33,7 @@
 
 //#define LOCKTRACE
 
-KstDataObject::KstDataObject(QObject *parent, const char *name, const QStringList &args) : KstObject() {
+KstDataObject::KstDataObject() : KstObject() {
   //kstdDebug() << "+++ CREATING DATA OBJECT: " << (void*)this << endl;
   _curveHints = new KstCurveHintList;
 }
--- branches/work/kst/pluginify/kst/src/libkstmath/kstdataobject.h #581213:581214
@@ -32,7 +32,7 @@
 class KST_EXPORT KstDataObject : public KstObject {
   Q_OBJECT
   public:
-    KstDataObject(QObject *parent=0, const char *name = "", const QStringList &args = QStringList());
+    KstDataObject();
     KstDataObject(const QDomElement& e);
     KstDataObject(const KstDataObject& object);
     virtual ~KstDataObject();
--- branches/work/kst/pluginify/kst/src/plugins/testplugin/testplugin.cpp #581213:581214
@@ -24,7 +24,7 @@
     KGenericFactory<TestPlugin>( "kstobject_testplugin" ) )
 
 TestPlugin::TestPlugin( QObject *parent, const char *name, const QStringList &args )
-    : KstDataObject( parent, name, args ) {
+    : KstDataObject() {
 
     _name = "testplugin";
     _xmlFile =  locate("data", "kstplugins/" + _name + ".xml");


More information about the Kst mailing list