diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:05:37 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:05:37 -0600 |
commit | f82f3a873111fde198134b019e7513cfad4b5d08 (patch) | |
tree | c71c1e904fdffdf8bcc76f6722981a300e518263 /kmouth/phrasebook | |
parent | 0f6d4a4ca2916b2e29bb93d852a3a7c9ad680935 (diff) | |
download | tdeaccessibility-f82f3a873111fde198134b019e7513cfad4b5d08.tar.gz tdeaccessibility-f82f3a873111fde198134b019e7513cfad4b5d08.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'kmouth/phrasebook')
-rw-r--r-- | kmouth/phrasebook/phrasebook.h | 4 | ||||
-rw-r--r-- | kmouth/phrasebook/phrasebookdialog.h | 6 | ||||
-rw-r--r-- | kmouth/phrasebook/phrasetree.h | 2 |
3 files changed, 6 insertions, 6 deletions
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 (); |