From f82f3a873111fde198134b019e7513cfad4b5d08 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 17 Feb 2012 16:05:37 -0600 Subject: Remove spurious TQ_OBJECT instances --- kmouth/configwizard.h | 2 +- kmouth/kmouth.h | 2 +- kmouth/optionsdialog.h | 4 ++-- kmouth/phrasebook/phrasebook.h | 4 ++-- kmouth/phrasebook/phrasebookdialog.h | 6 +++--- kmouth/phrasebook/phrasetree.h | 2 +- kmouth/phraselist.h | 2 +- kmouth/speech.h | 2 +- kmouth/texttospeechsystem.h | 2 +- kmouth/wordcompletion/dictionarycreationwizard.h | 6 +++--- kmouth/wordcompletion/klanguagebutton.h | 2 +- kmouth/wordcompletion/wordcompletion.h | 2 +- kmouth/wordcompletion/wordcompletionwidget.h | 2 +- 13 files changed, 19 insertions(+), 19 deletions(-) (limited to 'kmouth') diff --git a/kmouth/configwizard.h b/kmouth/configwizard.h index 9f3fff8..93a75f2 100644 --- a/kmouth/configwizard.h +++ b/kmouth/configwizard.h @@ -35,7 +35,7 @@ class CompletionWizardWidget; class ConfigWizard : public KWizard { Q_OBJECT - TQ_OBJECT + public: ConfigWizard (TQWidget *parent, const char *name, KConfig *config); ~ConfigWizard(); diff --git a/kmouth/kmouth.h b/kmouth/kmouth.h index b8d791d..0c5888f 100644 --- a/kmouth/kmouth.h +++ b/kmouth/kmouth.h @@ -56,7 +56,7 @@ class PhraseBook; class KMouthApp : public KMainWindow { Q_OBJECT - TQ_OBJECT + public: /** construtor of KMouthApp, calls all init functions to create the application. diff --git a/kmouth/optionsdialog.h b/kmouth/optionsdialog.h index a53d230..90b264f 100644 --- a/kmouth/optionsdialog.h +++ b/kmouth/optionsdialog.h @@ -33,7 +33,7 @@ class WordCompletionWidget; class PreferencesWidget : public PreferencesUI { Q_OBJECT - TQ_OBJECT + public: PreferencesWidget(TQWidget *parent, const char *name); ~PreferencesWidget(); @@ -57,7 +57,7 @@ private: class OptionsDialog : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: OptionsDialog(TQWidget *parent); ~OptionsDialog(); diff --git a/kmouth/phrasebook/phrasebook.h b/kmouth/phrasebook/phrasebook.h index 25f1d37..1e77c6d 100644 --- a/kmouth/phrasebook/phrasebook.h +++ b/kmouth/phrasebook/phrasebook.h @@ -148,7 +148,7 @@ public: */ class PhraseBookDrag: public TQDragObject { Q_OBJECT - TQ_OBJECT + public: PhraseBookDrag (PhraseBook *book, TQWidget *dragSource = 0, const char *name = 0); PhraseBookDrag (TQWidget *dragSource = 0, const char *name = 0); @@ -171,7 +171,7 @@ private: class PhraseAction : public KAction { Q_OBJECT - TQ_OBJECT + public: PhraseAction (const TQString& phrase, const TQString& cut, const TQObject* receiver, const char* slot, KActionCollection* parent) : KAction (phrase, "phrase", KShortcut(cut), 0, 0, parent, phrase.latin1()) { diff --git a/kmouth/phrasebook/phrasebookdialog.h b/kmouth/phrasebook/phrasebookdialog.h index cdd2dbe..fcc2cc2 100644 --- a/kmouth/phrasebook/phrasebookdialog.h +++ b/kmouth/phrasebook/phrasebookdialog.h @@ -74,7 +74,7 @@ private: class InitialPhraseBookWidget : public TQWidget { Q_OBJECT - TQ_OBJECT + public: InitialPhraseBookWidget(TQWidget *parent, const char *name); ~InitialPhraseBookWidget(); @@ -95,7 +95,7 @@ private: */ class StandardPhraseBookInsertAction : public KAction { Q_OBJECT - TQ_OBJECT + public: StandardPhraseBookInsertAction (const KURL &url, const TQString& name, const TQObject* receiver, const char* slot, KActionCollection* parent) : KAction (name, "phrasebook", 0, 0, 0, parent, 0) { @@ -143,7 +143,7 @@ protected: class PhraseBookDialog : public KMainWindow { friend class InitialPhraseBookWidget; Q_OBJECT - TQ_OBJECT + private: /** Constructor. It is private because this class implements the singleton * pattern. For creating the instance of the dialog, use the get() method. diff --git a/kmouth/phrasebook/phrasetree.h b/kmouth/phrasebook/phrasetree.h index 5633bc4..b91ec03 100644 --- a/kmouth/phrasebook/phrasetree.h +++ b/kmouth/phrasebook/phrasetree.h @@ -60,7 +60,7 @@ private: class PhraseTree : public KListView { friend class PhraseTreeItem; Q_OBJECT - TQ_OBJECT + public: PhraseTree (TQWidget *parent = 0, const char *name = 0); ~PhraseTree (); diff --git a/kmouth/phraselist.h b/kmouth/phraselist.h index cd86e83..d846510 100644 --- a/kmouth/phraselist.h +++ b/kmouth/phraselist.h @@ -40,7 +40,7 @@ class WordCompletion; class PhraseList : public TQWidget { Q_OBJECT - TQ_OBJECT + public: PhraseList(TQWidget *parent=0, const char *name=0); ~PhraseList(); diff --git a/kmouth/speech.h b/kmouth/speech.h index f92bb98..fd73e47 100644 --- a/kmouth/speech.h +++ b/kmouth/speech.h @@ -29,7 +29,7 @@ class Speech : public TQObject { Q_OBJECT - TQ_OBJECT + public: enum CharacterCodec { Local = 0, diff --git a/kmouth/texttospeechsystem.h b/kmouth/texttospeechsystem.h index db494e7..598d102 100644 --- a/kmouth/texttospeechsystem.h +++ b/kmouth/texttospeechsystem.h @@ -31,7 +31,7 @@ class KConfig; class TextToSpeechSystem : public TQObject{ Q_OBJECT - TQ_OBJECT + friend class TextToSpeechConfigurationWidget; public: TextToSpeechSystem(); diff --git a/kmouth/wordcompletion/dictionarycreationwizard.h b/kmouth/wordcompletion/dictionarycreationwizard.h index ea0784b..8d99da5 100644 --- a/kmouth/wordcompletion/dictionarycreationwizard.h +++ b/kmouth/wordcompletion/dictionarycreationwizard.h @@ -42,7 +42,7 @@ class MergeWidget; */ class DictionaryCreationWizard : public KWizard { Q_OBJECT - TQ_OBJECT + public: DictionaryCreationWizard (TQWidget *parent, const char *name, TQStringList dictionaryNames, @@ -77,7 +77,7 @@ private: */ class MergeWidget : public TQScrollView { Q_OBJECT - TQ_OBJECT + public: MergeWidget(KWizard *parent, const char *name, TQStringList dictionaryNames, @@ -101,7 +101,7 @@ private: */ class CompletionWizardWidget : public KDEDocSourceUI { Q_OBJECT - TQ_OBJECT + friend class ConfigWizard; public: CompletionWizardWidget(KWizard *parent, const char *name); diff --git a/kmouth/wordcompletion/klanguagebutton.h b/kmouth/wordcompletion/klanguagebutton.h index c38ff9e..385e363 100644 --- a/kmouth/wordcompletion/klanguagebutton.h +++ b/kmouth/wordcompletion/klanguagebutton.h @@ -40,7 +40,7 @@ class KLanguageButton : public TQPushButton { Q_OBJECT - TQ_OBJECT + public: KLanguageButton(TQWidget *parent=0, const char *name=0); diff --git a/kmouth/wordcompletion/wordcompletion.h b/kmouth/wordcompletion/wordcompletion.h index 220196f..2f92bc6 100644 --- a/kmouth/wordcompletion/wordcompletion.h +++ b/kmouth/wordcompletion/wordcompletion.h @@ -9,7 +9,7 @@ class WordCompletion : public KCompletion { friend class WordListWidget; Q_OBJECT - TQ_OBJECT + public: WordCompletion(); virtual ~WordCompletion(); diff --git a/kmouth/wordcompletion/wordcompletionwidget.h b/kmouth/wordcompletion/wordcompletionwidget.h index 09d05a2..a12b9e1 100644 --- a/kmouth/wordcompletion/wordcompletionwidget.h +++ b/kmouth/wordcompletion/wordcompletionwidget.h @@ -30,7 +30,7 @@ class KLanguageButton; */ class WordCompletionWidget : public WordCompletionUI { Q_OBJECT - TQ_OBJECT + public: WordCompletionWidget(TQWidget *parent, const char *name); ~WordCompletionWidget(); -- cgit v1.2.1