diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:08:59 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:08:59 -0600 |
commit | 5443f402bbfcf7f9c392bcbb0108ee074551f982 (patch) | |
tree | 6878d1e68ded849d3e2fb7988a8371074dbe7754 /kbabel/kbabeldict/modules | |
parent | 6df7194f5bb08f41c4c3a3c952a243776538ebc6 (diff) | |
download | tdesdk-5443f402bbfcf7f9c392bcbb0108ee074551f982.tar.gz tdesdk-5443f402bbfcf7f9c392bcbb0108ee074551f982.zip |
Remove spurious TQ_OBJECT instances
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 2f56247c..fcaa05e2 100644 --- a/kbabel/kbabeldict/modules/dbsearchengine/KDBSearchEngine.h +++ b/kbabel/kbabeldict/modules/dbsearchengine/KDBSearchEngine.h @@ -94,7 +94,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 76342634..6bc9e6e3 100644 --- a/kbabel/kbabeldict/modules/dbsearchengine/database.h +++ b/kbabel/kbabeldict/modules/dbsearchengine/database.h @@ -159,7 +159,7 @@ 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 85ab77d5..754da24d 100644 --- a/kbabel/kbabeldict/modules/dbsearchengine/dbscan.h +++ b/kbabel/kbabeldict/modules/dbsearchengine/dbscan.h @@ -44,7 +44,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 1016f74d..ddebfa46 100644 --- a/kbabel/kbabeldict/modules/dbsearchengine/dbse_factory.h +++ b/kbabel/kbabeldict/modules/dbsearchengine/dbse_factory.h @@ -8,7 +8,7 @@ class KAboutData; class DbSeFactory : public KLibFactory { Q_OBJECT - TQ_OBJECT + public: DbSeFactory( TQObject *parent=0, const char *name=0); ~DbSeFactory(); diff --git a/kbabel/kbabeldict/modules/dbsearchengine/preferenceswidget.h b/kbabel/kbabeldict/modules/dbsearchengine/preferenceswidget.h index 980a8f74..449db1da 100644 --- a/kbabel/kbabeldict/modules/dbsearchengine/preferenceswidget.h +++ b/kbabel/kbabeldict/modules/dbsearchengine/preferenceswidget.h @@ -7,7 +7,7 @@ class PreferencesWidget : public PrefWidget { Q_OBJECT - TQ_OBJECT + public: PreferencesWidget(TQWidget *parent=0, const char* name=0); diff --git a/kbabel/kbabeldict/modules/dbsearchengine2/KDBSearchEngine2.h b/kbabel/kbabeldict/modules/dbsearchengine2/KDBSearchEngine2.h index 6bc46ab1..a9377d68 100644 --- a/kbabel/kbabeldict/modules/dbsearchengine2/KDBSearchEngine2.h +++ b/kbabel/kbabeldict/modules/dbsearchengine2/KDBSearchEngine2.h @@ -22,7 +22,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 e2c5db67..173ac31e 100644 --- a/kbabel/kbabeldict/modules/dbsearchengine2/algorithms.h +++ b/kbabel/kbabeldict/modules/dbsearchengine2/algorithms.h @@ -19,7 +19,7 @@ class AbstractSearchAlgorithm : public TQObject { Q_OBJECT - TQ_OBJECT + public: typedef TQValueList<QueryResult> ResultList; @@ -48,7 +48,7 @@ class AbstractSearchAlgorithm : public TQObject class ExactSearchAlgorithm : public AbstractSearchAlgorithm { Q_OBJECT - TQ_OBJECT + public: ExactSearchAlgorithm(DataBaseInterface *dbi,DBSESettings *sets) : AbstractSearchAlgorithm(dbi,sets) {} @@ -58,7 +58,7 @@ class ExactSearchAlgorithm : public AbstractSearchAlgorithm class AlphaSearchAlgorithm : public AbstractSearchAlgorithm { Q_OBJECT - TQ_OBJECT + public: AlphaSearchAlgorithm(DataBaseInterface *dbi,DBSESettings *sets) : AbstractSearchAlgorithm(dbi,sets) {} @@ -68,7 +68,7 @@ class AlphaSearchAlgorithm : public AbstractSearchAlgorithm class SentenceArchiveSearchAlgorithm : public AbstractSearchAlgorithm { Q_OBJECT - TQ_OBJECT + public: SentenceArchiveSearchAlgorithm(DataBaseInterface *dbi,DBSESettings *sets) ; @@ -78,7 +78,7 @@ class SentenceArchiveSearchAlgorithm : public AbstractSearchAlgorithm class ChunkByChunkSearchAlgorithm : public AbstractSearchAlgorithm { Q_OBJECT - TQ_OBJECT + public: ChunkByChunkSearchAlgorithm(DataBaseInterface *dbi,DBSESettings *sets); @@ -95,7 +95,7 @@ class ChunkByChunkSearchAlgorithm : public AbstractSearchAlgorithm class FuzzyChunkSearchAlgorithm : public AbstractSearchAlgorithm { Q_OBJECT - TQ_OBJECT + public: FuzzyChunkSearchAlgorithm(DataBaseInterface *dbi,DBSESettings *sets); @@ -111,7 +111,7 @@ class FuzzyChunkSearchAlgorithm : public AbstractSearchAlgorithm class GenericSearchAlgorithm : public AbstractSearchAlgorithm { Q_OBJECT - TQ_OBJECT + public: GenericSearchAlgorithm(DataBaseInterface *dbi,DBSESettings *sets) ; @@ -130,7 +130,7 @@ class GenericSearchAlgorithm : public AbstractSearchAlgorithm class CorrelationSearchAlgorithm : public AbstractSearchAlgorithm { Q_OBJECT - TQ_OBJECT + public: CorrelationSearchAlgorithm(DataBaseInterface *dbi,DBSESettings *sets) : AbstractSearchAlgorithm(dbi,sets) {} virtual ResultList exec(const TQString& query); @@ -141,7 +141,7 @@ class CorrelationSearchAlgorithm : public AbstractSearchAlgorithm class SingleWordSearchAlgorithm : public GenericSearchAlgorithm { Q_OBJECT - TQ_OBJECT + public: SingleWordSearchAlgorithm(DataBaseInterface *dbi,DBSESettings *sets); virtual DataBaseInterface::ResultList exec(const TQString& query); diff --git a/kbabel/kbabeldict/modules/dbsearchengine2/dbscan.h b/kbabel/kbabeldict/modules/dbsearchengine2/dbscan.h index f3ee15d4..9aaf2dce 100644 --- a/kbabel/kbabeldict/modules/dbsearchengine2/dbscan.h +++ b/kbabel/kbabeldict/modules/dbsearchengine2/dbscan.h @@ -72,7 +72,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 793c03d3..267ec14f 100644 --- a/kbabel/kbabeldict/modules/dbsearchengine2/dbse2_factory.h +++ b/kbabel/kbabeldict/modules/dbsearchengine2/dbse2_factory.h @@ -8,7 +8,7 @@ class KAboutData; class DbSe2Factory : public KLibFactory { Q_OBJECT - TQ_OBJECT + public: DbSe2Factory( TQObject *parent=0, const char *name=0); ~DbSe2Factory(); diff --git a/kbabel/kbabeldict/modules/dbsearchengine2/preferenceswidget.h b/kbabel/kbabeldict/modules/dbsearchengine2/preferenceswidget.h index 3aa9bcb8..515c8c51 100644 --- a/kbabel/kbabeldict/modules/dbsearchengine2/preferenceswidget.h +++ b/kbabel/kbabeldict/modules/dbsearchengine2/preferenceswidget.h @@ -7,7 +7,7 @@ class KDB2PreferencesWidget : public PrefWidget { Q_OBJECT - TQ_OBJECT + public: KDB2PreferencesWidget(TQWidget *parent=0, const char* name=0); diff --git a/kbabel/kbabeldict/modules/poauxiliary/pa_factory.h b/kbabel/kbabeldict/modules/poauxiliary/pa_factory.h index ab0fad0e..640bcf8a 100644 --- a/kbabel/kbabeldict/modules/poauxiliary/pa_factory.h +++ b/kbabel/kbabeldict/modules/poauxiliary/pa_factory.h @@ -42,7 +42,7 @@ class KAboutData; class PaFactory : public KLibFactory { Q_OBJECT - TQ_OBJECT + public: PaFactory( TQObject *parent=0, const char *name=0); ~PaFactory(); diff --git a/kbabel/kbabeldict/modules/poauxiliary/poauxiliary.h b/kbabel/kbabeldict/modules/poauxiliary/poauxiliary.h index d3769237..b5fd7af7 100644 --- a/kbabel/kbabeldict/modules/poauxiliary/poauxiliary.h +++ b/kbabel/kbabeldict/modules/poauxiliary/poauxiliary.h @@ -50,7 +50,7 @@ class AuxiliaryPreferencesWidget; class PoAuxiliary : public SearchEngine { Q_OBJECT - TQ_OBJECT + public: PoAuxiliary(TQObject *parent=0, const char *name=0); diff --git a/kbabel/kbabeldict/modules/poauxiliary/preferenceswidget.h b/kbabel/kbabeldict/modules/poauxiliary/preferenceswidget.h index ac4e024f..7952d86b 100644 --- a/kbabel/kbabeldict/modules/poauxiliary/preferenceswidget.h +++ b/kbabel/kbabeldict/modules/poauxiliary/preferenceswidget.h @@ -42,7 +42,7 @@ class PWidget; class AuxiliaryPreferencesWidget : public PrefWidget { Q_OBJECT - TQ_OBJECT + public: AuxiliaryPreferencesWidget(TQWidget *parent=0, const char* name=0); diff --git a/kbabel/kbabeldict/modules/pocompendium/compendiumdata.h b/kbabel/kbabeldict/modules/pocompendium/compendiumdata.h index 1d621bd8..fbe07a26 100644 --- a/kbabel/kbabeldict/modules/pocompendium/compendiumdata.h +++ b/kbabel/kbabeldict/modules/pocompendium/compendiumdata.h @@ -49,7 +49,7 @@ class Catalog; class CompendiumData : public TQObject { Q_OBJECT - TQ_OBJECT + public: CompendiumData(TQObject *parent=0); diff --git a/kbabel/kbabeldict/modules/pocompendium/pc_factory.h b/kbabel/kbabeldict/modules/pocompendium/pc_factory.h index dca44e09..0d287259 100644 --- a/kbabel/kbabeldict/modules/pocompendium/pc_factory.h +++ b/kbabel/kbabeldict/modules/pocompendium/pc_factory.h @@ -42,7 +42,7 @@ class KAboutData; class PcFactory : public KLibFactory { Q_OBJECT - TQ_OBJECT + public: PcFactory( TQObject *parent=0, const char *name=0); ~PcFactory(); diff --git a/kbabel/kbabeldict/modules/pocompendium/pocompendium.h b/kbabel/kbabeldict/modules/pocompendium/pocompendium.h index 8f2b19a8..c0d33d5e 100644 --- a/kbabel/kbabeldict/modules/pocompendium/pocompendium.h +++ b/kbabel/kbabeldict/modules/pocompendium/pocompendium.h @@ -51,7 +51,7 @@ class TQTimer; class PoCompendium : public SearchEngine { Q_OBJECT - TQ_OBJECT + public: PoCompendium(TQObject *parent=0, const char *name=0); diff --git a/kbabel/kbabeldict/modules/pocompendium/preferenceswidget.h b/kbabel/kbabeldict/modules/pocompendium/preferenceswidget.h index d98fe9c2..c346ec83 100644 --- a/kbabel/kbabeldict/modules/pocompendium/preferenceswidget.h +++ b/kbabel/kbabeldict/modules/pocompendium/preferenceswidget.h @@ -42,7 +42,7 @@ class CompendiumPWidget; class CompendiumPreferencesWidget : public PrefWidget { Q_OBJECT - TQ_OBJECT + public: CompendiumPreferencesWidget(TQWidget *parent=0, const char* name=0); diff --git a/kbabel/kbabeldict/modules/tmx/pc_factory.h b/kbabel/kbabeldict/modules/tmx/pc_factory.h index 9ddaf873..0e5ba547 100644 --- a/kbabel/kbabeldict/modules/tmx/pc_factory.h +++ b/kbabel/kbabeldict/modules/tmx/pc_factory.h @@ -44,7 +44,7 @@ class KAboutData; class PcFactory : public KLibFactory { Q_OBJECT - TQ_OBJECT + public: PcFactory( TQObject *parent=0, const char *name=0); ~PcFactory(); diff --git a/kbabel/kbabeldict/modules/tmx/preferenceswidget.h b/kbabel/kbabeldict/modules/tmx/preferenceswidget.h index ad18a169..6f2d6f79 100644 --- a/kbabel/kbabeldict/modules/tmx/preferenceswidget.h +++ b/kbabel/kbabeldict/modules/tmx/preferenceswidget.h @@ -44,7 +44,7 @@ class TmxCompendiumPWidget; class TmxCompendiumPreferencesWidget : public PrefWidget { Q_OBJECT - TQ_OBJECT + public: TmxCompendiumPreferencesWidget(TQWidget *parent=0, const char* name=0); diff --git a/kbabel/kbabeldict/modules/tmx/tmxcompendium.h b/kbabel/kbabeldict/modules/tmx/tmxcompendium.h index 9fec1b92..b4e61c9e 100644 --- a/kbabel/kbabeldict/modules/tmx/tmxcompendium.h +++ b/kbabel/kbabeldict/modules/tmx/tmxcompendium.h @@ -50,7 +50,7 @@ class TQTimer; class TmxCompendium : public SearchEngine { Q_OBJECT - TQ_OBJECT + public: TmxCompendium(TQObject *parent=0, const char *name=0); diff --git a/kbabel/kbabeldict/modules/tmx/tmxcompendiumdata.h b/kbabel/kbabeldict/modules/tmx/tmxcompendiumdata.h index 3e8f2825..0caccf7f 100644 --- a/kbabel/kbabeldict/modules/tmx/tmxcompendiumdata.h +++ b/kbabel/kbabeldict/modules/tmx/tmxcompendiumdata.h @@ -47,7 +47,7 @@ class TmxCompendiumData : public TQObject { Q_OBJECT - TQ_OBJECT + public: TmxCompendiumData(TQObject *parent=0); |