diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:07:21 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-21 09:45:22 +0900 |
commit | 3c9c6c22a3e443bf98087def488e60f381a09bad (patch) | |
tree | cb7c51f7957ad77691b5a370b6d5ed02b9dfca06 /kbabel/kbabeldict/modules | |
parent | 291c8d1ad96e9d1d6296d8fdef2861a8f12e6e30 (diff) | |
download | tdesdk-3c9c6c22a3e443bf98087def488e60f381a09bad.tar.gz tdesdk-3c9c6c22a3e443bf98087def488e60f381a09bad.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 44548d3e71aab859c1547104f3419fd288add594)
Diffstat (limited to 'kbabel/kbabeldict/modules')
21 files changed, 29 insertions, 29 deletions
diff --git a/kbabel/kbabeldict/modules/dbsearchengine/KDBSearchEngine.h b/kbabel/kbabeldict/modules/dbsearchengine/KDBSearchEngine.h index e7edb3c3..1ea8ba17 100644 --- a/kbabel/kbabeldict/modules/dbsearchengine/KDBSearchEngine.h +++ b/kbabel/kbabeldict/modules/dbsearchengine/KDBSearchEngine.h @@ -93,7 +93,7 @@ class CatalogDescription class KDBSearchEngine : public SearchEngine { - Q_OBJECT + TQ_OBJECT public: diff --git a/kbabel/kbabeldict/modules/dbsearchengine/database.h b/kbabel/kbabeldict/modules/dbsearchengine/database.h index 6bc9e6e3..66976837 100644 --- a/kbabel/kbabeldict/modules/dbsearchengine/database.h +++ b/kbabel/kbabeldict/modules/dbsearchengine/database.h @@ -158,7 +158,7 @@ class DataBaseItem class DataBaseManager : public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/kbabel/kbabeldict/modules/dbsearchengine/dbscan.h b/kbabel/kbabeldict/modules/dbsearchengine/dbscan.h index 754da24d..6c7f6d2b 100644 --- a/kbabel/kbabeldict/modules/dbsearchengine/dbscan.h +++ b/kbabel/kbabeldict/modules/dbsearchengine/dbscan.h @@ -43,7 +43,7 @@ class PoScanner : public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/kbabel/kbabeldict/modules/dbsearchengine/dbse_factory.h b/kbabel/kbabeldict/modules/dbsearchengine/dbse_factory.h index 6c72c11a..8a56cb19 100644 --- a/kbabel/kbabeldict/modules/dbsearchengine/dbse_factory.h +++ b/kbabel/kbabeldict/modules/dbsearchengine/dbse_factory.h @@ -7,7 +7,7 @@ class TDEAboutData; class DbSeFactory : public KLibFactory { - Q_OBJECT + TQ_OBJECT public: DbSeFactory( TQObject *parent=0, const char *name=0); diff --git a/kbabel/kbabeldict/modules/dbsearchengine/preferenceswidget.h b/kbabel/kbabeldict/modules/dbsearchengine/preferenceswidget.h index 449db1da..ab88096e 100644 --- a/kbabel/kbabeldict/modules/dbsearchengine/preferenceswidget.h +++ b/kbabel/kbabeldict/modules/dbsearchengine/preferenceswidget.h @@ -6,7 +6,7 @@ class PreferencesWidget : public PrefWidget { - Q_OBJECT + TQ_OBJECT public: diff --git a/kbabel/kbabeldict/modules/dbsearchengine2/KDBSearchEngine2.h b/kbabel/kbabeldict/modules/dbsearchengine2/KDBSearchEngine2.h index 9f8d804c..54b19c9d 100644 --- a/kbabel/kbabeldict/modules/dbsearchengine2/KDBSearchEngine2.h +++ b/kbabel/kbabeldict/modules/dbsearchengine2/KDBSearchEngine2.h @@ -21,7 +21,7 @@ Andrea Rizzi class KDBSearchEngine2 : public SearchEngine { - Q_OBJECT + TQ_OBJECT public: diff --git a/kbabel/kbabeldict/modules/dbsearchengine2/algorithms.h b/kbabel/kbabeldict/modules/dbsearchengine2/algorithms.h index 173ac31e..5fe50801 100644 --- a/kbabel/kbabeldict/modules/dbsearchengine2/algorithms.h +++ b/kbabel/kbabeldict/modules/dbsearchengine2/algorithms.h @@ -18,7 +18,7 @@ class AbstractSearchAlgorithm : public TQObject { - Q_OBJECT + TQ_OBJECT public: @@ -47,7 +47,7 @@ class AbstractSearchAlgorithm : public TQObject class ExactSearchAlgorithm : public AbstractSearchAlgorithm { - Q_OBJECT + TQ_OBJECT public: ExactSearchAlgorithm(DataBaseInterface *dbi,DBSESettings *sets) : AbstractSearchAlgorithm(dbi,sets) {} @@ -57,7 +57,7 @@ class ExactSearchAlgorithm : public AbstractSearchAlgorithm class AlphaSearchAlgorithm : public AbstractSearchAlgorithm { - Q_OBJECT + TQ_OBJECT public: AlphaSearchAlgorithm(DataBaseInterface *dbi,DBSESettings *sets) : AbstractSearchAlgorithm(dbi,sets) {} @@ -67,7 +67,7 @@ class AlphaSearchAlgorithm : public AbstractSearchAlgorithm class SentenceArchiveSearchAlgorithm : public AbstractSearchAlgorithm { - Q_OBJECT + TQ_OBJECT public: SentenceArchiveSearchAlgorithm(DataBaseInterface *dbi,DBSESettings *sets) ; @@ -77,7 +77,7 @@ class SentenceArchiveSearchAlgorithm : public AbstractSearchAlgorithm class ChunkByChunkSearchAlgorithm : public AbstractSearchAlgorithm { - Q_OBJECT + TQ_OBJECT public: ChunkByChunkSearchAlgorithm(DataBaseInterface *dbi,DBSESettings *sets); @@ -94,7 +94,7 @@ class ChunkByChunkSearchAlgorithm : public AbstractSearchAlgorithm class FuzzyChunkSearchAlgorithm : public AbstractSearchAlgorithm { - Q_OBJECT + TQ_OBJECT public: FuzzyChunkSearchAlgorithm(DataBaseInterface *dbi,DBSESettings *sets); @@ -110,7 +110,7 @@ class FuzzyChunkSearchAlgorithm : public AbstractSearchAlgorithm class GenericSearchAlgorithm : public AbstractSearchAlgorithm { - Q_OBJECT + TQ_OBJECT public: GenericSearchAlgorithm(DataBaseInterface *dbi,DBSESettings *sets) ; @@ -129,7 +129,7 @@ class GenericSearchAlgorithm : public AbstractSearchAlgorithm class CorrelationSearchAlgorithm : public AbstractSearchAlgorithm { - Q_OBJECT + TQ_OBJECT public: CorrelationSearchAlgorithm(DataBaseInterface *dbi,DBSESettings *sets) : AbstractSearchAlgorithm(dbi,sets) {} @@ -140,7 +140,7 @@ class CorrelationSearchAlgorithm : public AbstractSearchAlgorithm class SingleWordSearchAlgorithm : public GenericSearchAlgorithm { - Q_OBJECT + TQ_OBJECT public: SingleWordSearchAlgorithm(DataBaseInterface *dbi,DBSESettings *sets); diff --git a/kbabel/kbabeldict/modules/dbsearchengine2/dbscan.h b/kbabel/kbabeldict/modules/dbsearchengine2/dbscan.h index be3ff8d7..8097722f 100644 --- a/kbabel/kbabeldict/modules/dbsearchengine2/dbscan.h +++ b/kbabel/kbabeldict/modules/dbsearchengine2/dbscan.h @@ -71,7 +71,7 @@ class MessagesSource class PoScanner : public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/kbabel/kbabeldict/modules/dbsearchengine2/dbse2_factory.h b/kbabel/kbabeldict/modules/dbsearchengine2/dbse2_factory.h index b2f2dba0..ffd6b170 100644 --- a/kbabel/kbabeldict/modules/dbsearchengine2/dbse2_factory.h +++ b/kbabel/kbabeldict/modules/dbsearchengine2/dbse2_factory.h @@ -7,7 +7,7 @@ class TDEAboutData; class DbSe2Factory : public KLibFactory { - Q_OBJECT + TQ_OBJECT public: DbSe2Factory( TQObject *parent=0, const char *name=0); diff --git a/kbabel/kbabeldict/modules/dbsearchengine2/preferenceswidget.h b/kbabel/kbabeldict/modules/dbsearchengine2/preferenceswidget.h index 515c8c51..631ceff1 100644 --- a/kbabel/kbabeldict/modules/dbsearchengine2/preferenceswidget.h +++ b/kbabel/kbabeldict/modules/dbsearchengine2/preferenceswidget.h @@ -6,7 +6,7 @@ class KDB2PreferencesWidget : public PrefWidget { - Q_OBJECT + TQ_OBJECT public: diff --git a/kbabel/kbabeldict/modules/poauxiliary/pa_factory.h b/kbabel/kbabeldict/modules/poauxiliary/pa_factory.h index dfcfae24..68b33759 100644 --- a/kbabel/kbabeldict/modules/poauxiliary/pa_factory.h +++ b/kbabel/kbabeldict/modules/poauxiliary/pa_factory.h @@ -41,7 +41,7 @@ class TDEAboutData; class PaFactory : public KLibFactory { - Q_OBJECT + TQ_OBJECT public: PaFactory( TQObject *parent=0, const char *name=0); diff --git a/kbabel/kbabeldict/modules/poauxiliary/poauxiliary.h b/kbabel/kbabeldict/modules/poauxiliary/poauxiliary.h index c04a8db4..93c10af6 100644 --- a/kbabel/kbabeldict/modules/poauxiliary/poauxiliary.h +++ b/kbabel/kbabeldict/modules/poauxiliary/poauxiliary.h @@ -49,7 +49,7 @@ class AuxiliaryPreferencesWidget; class PoAuxiliary : public SearchEngine { - Q_OBJECT + TQ_OBJECT public: diff --git a/kbabel/kbabeldict/modules/poauxiliary/preferenceswidget.h b/kbabel/kbabeldict/modules/poauxiliary/preferenceswidget.h index 7952d86b..35b88847 100644 --- a/kbabel/kbabeldict/modules/poauxiliary/preferenceswidget.h +++ b/kbabel/kbabeldict/modules/poauxiliary/preferenceswidget.h @@ -41,7 +41,7 @@ class PWidget; class AuxiliaryPreferencesWidget : public PrefWidget { - Q_OBJECT + TQ_OBJECT public: diff --git a/kbabel/kbabeldict/modules/pocompendium/compendiumdata.h b/kbabel/kbabeldict/modules/pocompendium/compendiumdata.h index fbe07a26..3ae033c9 100644 --- a/kbabel/kbabeldict/modules/pocompendium/compendiumdata.h +++ b/kbabel/kbabeldict/modules/pocompendium/compendiumdata.h @@ -48,7 +48,7 @@ class Catalog; class CompendiumData : public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/kbabel/kbabeldict/modules/pocompendium/pc_factory.h b/kbabel/kbabeldict/modules/pocompendium/pc_factory.h index cb2c4246..6238fd65 100644 --- a/kbabel/kbabeldict/modules/pocompendium/pc_factory.h +++ b/kbabel/kbabeldict/modules/pocompendium/pc_factory.h @@ -41,7 +41,7 @@ class TDEAboutData; class PcFactory : public KLibFactory { - Q_OBJECT + TQ_OBJECT public: PcFactory( TQObject *parent=0, const char *name=0); diff --git a/kbabel/kbabeldict/modules/pocompendium/pocompendium.h b/kbabel/kbabeldict/modules/pocompendium/pocompendium.h index deb1a16d..4a0f0a48 100644 --- a/kbabel/kbabeldict/modules/pocompendium/pocompendium.h +++ b/kbabel/kbabeldict/modules/pocompendium/pocompendium.h @@ -50,7 +50,7 @@ class TQTimer; class PoCompendium : public SearchEngine { - Q_OBJECT + TQ_OBJECT public: diff --git a/kbabel/kbabeldict/modules/pocompendium/preferenceswidget.h b/kbabel/kbabeldict/modules/pocompendium/preferenceswidget.h index c346ec83..8e6bbc76 100644 --- a/kbabel/kbabeldict/modules/pocompendium/preferenceswidget.h +++ b/kbabel/kbabeldict/modules/pocompendium/preferenceswidget.h @@ -41,7 +41,7 @@ class CompendiumPWidget; class CompendiumPreferencesWidget : public PrefWidget { - Q_OBJECT + TQ_OBJECT public: diff --git a/kbabel/kbabeldict/modules/tmx/pc_factory.h b/kbabel/kbabeldict/modules/tmx/pc_factory.h index 6c450e9a..6b23ddf7 100644 --- a/kbabel/kbabeldict/modules/tmx/pc_factory.h +++ b/kbabel/kbabeldict/modules/tmx/pc_factory.h @@ -43,7 +43,7 @@ class TDEAboutData; class PcFactory : public KLibFactory { - Q_OBJECT + TQ_OBJECT public: PcFactory( TQObject *parent=0, const char *name=0); diff --git a/kbabel/kbabeldict/modules/tmx/preferenceswidget.h b/kbabel/kbabeldict/modules/tmx/preferenceswidget.h index 6f2d6f79..9e396f7e 100644 --- a/kbabel/kbabeldict/modules/tmx/preferenceswidget.h +++ b/kbabel/kbabeldict/modules/tmx/preferenceswidget.h @@ -43,7 +43,7 @@ class TmxCompendiumPWidget; class TmxCompendiumPreferencesWidget : public PrefWidget { - Q_OBJECT + TQ_OBJECT public: diff --git a/kbabel/kbabeldict/modules/tmx/tmxcompendium.h b/kbabel/kbabeldict/modules/tmx/tmxcompendium.h index 992c5d93..270a5acc 100644 --- a/kbabel/kbabeldict/modules/tmx/tmxcompendium.h +++ b/kbabel/kbabeldict/modules/tmx/tmxcompendium.h @@ -49,7 +49,7 @@ class TQTimer; class TmxCompendium : public SearchEngine { - Q_OBJECT + TQ_OBJECT public: diff --git a/kbabel/kbabeldict/modules/tmx/tmxcompendiumdata.h b/kbabel/kbabeldict/modules/tmx/tmxcompendiumdata.h index 0caccf7f..18e6b970 100644 --- a/kbabel/kbabeldict/modules/tmx/tmxcompendiumdata.h +++ b/kbabel/kbabeldict/modules/tmx/tmxcompendiumdata.h @@ -46,7 +46,7 @@ class TmxCompendiumData : public TQObject { - Q_OBJECT + TQ_OBJECT public: |