diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-12 11:34:47 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-12 11:34:47 +0900 |
commit | 8dac8f1a52cf3a2983af451aff69ca268cfbd6d7 (patch) | |
tree | 0e635c9ea1f00598fe892d77e026cbeb96eff8ef /kbabel | |
parent | 3523578cf170d9e98e2c0c5b2f3b6f7de4318a03 (diff) | |
download | tdesdk-8dac8f1a52cf3a2983af451aff69ca268cfbd6d7.tar.gz tdesdk-8dac8f1a52cf3a2983af451aff69ca268cfbd6d7.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 'kbabel')
6 files changed, 6 insertions, 6 deletions
diff --git a/kbabel/commonui/tdeactionselector.cpp b/kbabel/commonui/tdeactionselector.cpp index 9f364e7e..7cb5160c 100644 --- a/kbabel/commonui/tdeactionselector.cpp +++ b/kbabel/commonui/tdeactionselector.cpp @@ -409,7 +409,7 @@ bool TDEActionSelector::eventFilter( TQObject *o, TQEvent *e ) } return true; } - else if ( o->inherits( TQLISTBOX_OBJECT_NAME_STRING ) ) + else if ( o->inherits( "TQListBox" ) ) { switch ( ((TQKeyEvent*)e)->key() ) { diff --git a/kbabel/kbabeldict/modules/dbsearchengine/dbse_factory.h b/kbabel/kbabeldict/modules/dbsearchengine/dbse_factory.h index c5fb96af..6c72c11a 100644 --- a/kbabel/kbabeldict/modules/dbsearchengine/dbse_factory.h +++ b/kbabel/kbabeldict/modules/dbsearchengine/dbse_factory.h @@ -14,7 +14,7 @@ public: ~DbSeFactory(); 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()); static TDEInstance *instance(); diff --git a/kbabel/kbabeldict/modules/dbsearchengine2/dbse2_factory.h b/kbabel/kbabeldict/modules/dbsearchengine2/dbse2_factory.h index a34cf1ed..b2f2dba0 100644 --- a/kbabel/kbabeldict/modules/dbsearchengine2/dbse2_factory.h +++ b/kbabel/kbabeldict/modules/dbsearchengine2/dbse2_factory.h @@ -14,7 +14,7 @@ public: ~DbSe2Factory(); 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()); static TDEInstance *instance(); diff --git a/kbabel/kbabeldict/modules/poauxiliary/pa_factory.h b/kbabel/kbabeldict/modules/poauxiliary/pa_factory.h index a0a5a361..dfcfae24 100644 --- a/kbabel/kbabeldict/modules/poauxiliary/pa_factory.h +++ b/kbabel/kbabeldict/modules/poauxiliary/pa_factory.h @@ -48,7 +48,7 @@ public: ~PaFactory(); 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()); static TDEInstance *instance(); diff --git a/kbabel/kbabeldict/modules/pocompendium/pc_factory.h b/kbabel/kbabeldict/modules/pocompendium/pc_factory.h index bd94712a..cb2c4246 100644 --- a/kbabel/kbabeldict/modules/pocompendium/pc_factory.h +++ b/kbabel/kbabeldict/modules/pocompendium/pc_factory.h @@ -48,7 +48,7 @@ public: ~PcFactory(); 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()); static TDEInstance *instance(); diff --git a/kbabel/kbabeldict/modules/tmx/pc_factory.h b/kbabel/kbabeldict/modules/tmx/pc_factory.h index 6c8a900f..6c450e9a 100644 --- a/kbabel/kbabeldict/modules/tmx/pc_factory.h +++ b/kbabel/kbabeldict/modules/tmx/pc_factory.h @@ -50,7 +50,7 @@ public: ~PcFactory(); 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()); static TDEInstance *instance(); |