diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-02 22:53:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-02 22:53:34 +0000 |
commit | b1960071ca0d9303610b4afd8c07afdf1f091756 (patch) | |
tree | 98ea75744f33110bf10713d91cc18f583e5235f4 /kdecore/klibloader.h | |
parent | bf85f02dd35b67007f6732d3c7dc76d7ac7f2a3d (diff) | |
download | tdelibs-b1960071ca0d9303610b4afd8c07afdf1f091756.tar.gz tdelibs-b1960071ca0d9303610b4afd8c07afdf1f091756.zip |
Convert remainder of kdelibs to use currently defined tqt object name defs
This might fix the kio ssl problem
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1226906 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdecore/klibloader.h')
-rw-r--r-- | kdecore/klibloader.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kdecore/klibloader.h b/kdecore/klibloader.h index c36e82f07..0d372237d 100644 --- a/kdecore/klibloader.h +++ b/kdecore/klibloader.h @@ -349,7 +349,7 @@ public: * It is valid behavior to create different kinds of objects * depending on the requested @p classname. For example a koffice * library may usually return a pointer to KoDocument. But - * if asked for a "TQWidget", it could create a wrapper widget, + * if asked for a TQWIDGET_OBJECT_NAME_STRING, it could create a wrapper widget, * that encapsulates the Koffice specific features. * * create() automatically emits a signal objectCreated to tell @@ -363,7 +363,7 @@ public: * @param args a list of arguments */ - TQObject* create( TQObject* parent = 0, const char* name = 0, const char* classname = "TQObject", const TQStringList &args = TQStringList() ); + TQObject* create( TQObject* parent = 0, const char* name = 0, const char* classname = TQOBJECT_OBJECT_NAME_STRING, const TQStringList &args = TQStringList() ); signals: /** @@ -382,7 +382,7 @@ protected: * It is valid behavior to create different kinds of objects * depending on the requested @p className. For example a koffice * library may usually return a pointer to KoDocument. But - * if asked for a "TQWidget", it could create a wrapper widget, + * if asked for a TQWIDGET_OBJECT_NAME_STRING, it could create a wrapper widget, * that encapsulates the Koffice specific features. * * This function is called by #create() @@ -392,7 +392,7 @@ protected: * @param args a list of arguments */ virtual TQObject* createObject( TQObject* parent = 0, const char* name = 0, - const char* className = "TQObject", + const char* className = TQOBJECT_OBJECT_NAME_STRING, const TQStringList &args = TQStringList() ) = 0; |