diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-11 21:46:14 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-11 21:46:14 +0900 |
commit | 2c4375efc4964d9d3857bf27472c0e672b384d8e (patch) | |
tree | a5bf489d713eeb0c5463b86b0fccf96e015c458f /lib | |
parent | adc41d0e4d2c77dfd0ed5ab48935a2ad82d53c82 (diff) | |
download | kpilot-2c4375efc4964d9d3857bf27472c0e672b384d8e.tar.gz kpilot-2c4375efc4964d9d3857bf27472c0e672b384d8e.zip |
Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the merging of tqtinterface with tqt3.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/plugin.h | 2 | ||||
-rw-r--r-- | lib/pluginfactory.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/plugin.h b/lib/plugin.h index ddae9fe..37a88ec 100644 --- a/lib/plugin.h +++ b/lib/plugin.h @@ -446,7 +446,7 @@ namespace PluginUtility KDE_EXPORT * protected: * virtual TQObject* createObject( TQObject* parent = 0, * const char* name = 0, -* const char* classname = TQOBJECT_OBJECT_NAME_STRING, +* const char* classname = "TQObject", * const TQStringList &args = TQStringList() ); * </pre> * diff --git a/lib/pluginfactory.h b/lib/pluginfactory.h index 1afdf8c..e9be090 100644 --- a/lib/pluginfactory.h +++ b/lib/pluginfactory.h @@ -55,7 +55,7 @@ protected: virtual TQObject *createObject( TQObject* parent = 0, const char* name = 0, - const char* classname = TQOBJECT_OBJECT_NAME_STRING, + const char* classname = "TQObject", const TQStringList &args = TQStringList() ) { if (qstrcmp(classname,"ConduitConfigBase")==0) |