diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:06:23 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:06:23 -0600 |
commit | 153e023cc2d72c36f700b8be485ccccca6d0e8f1 (patch) | |
tree | 2ebdcffd37f89f2bec1eb2547831a1f5118ccd20 /kate | |
parent | 52d0d54062c878fac12cacab8ea9dbfe9c1da905 (diff) | |
download | tdebase-153e023cc2d72c36f700b8be485ccccca6d0e8f1.tar.gz tdebase-153e023cc2d72c36f700b8be485ccccca6d0e8f1.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'kate')
-rw-r--r-- | kate/app/katemdi.h | 12 | ||||
-rw-r--r-- | kate/app/kwritemain.h | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/kate/app/katemdi.h b/kate/app/katemdi.h index 8096433b7..57ccd325f 100644 --- a/kate/app/katemdi.h +++ b/kate/app/katemdi.h @@ -41,7 +41,7 @@ namespace KateMDI { class Splitter : public TQSplitter { Q_OBJECT - TQ_OBJECT + public: Splitter(Orientation o, TQWidget* parent=0, const char* name=0); @@ -61,7 +61,7 @@ class Splitter : public TQSplitter class ToggleToolViewAction : public KToggleAction { Q_OBJECT - TQ_OBJECT + public: ToggleToolViewAction ( const TQString& text, const KShortcut& cut, @@ -80,7 +80,7 @@ class ToggleToolViewAction : public KToggleAction class GUIClient : public TQObject, public KXMLGUIClient { Q_OBJECT - TQ_OBJECT + public: GUIClient ( class MainWindow *mw ); @@ -105,7 +105,7 @@ class GUIClient : public TQObject, public KXMLGUIClient class ToolView : public TQVBox { Q_OBJECT - TQ_OBJECT + friend class Sidebar; friend class MainWindow; @@ -180,7 +180,7 @@ class ToolView : public TQVBox class Sidebar : public KMultiTabBar { Q_OBJECT - TQ_OBJECT + public: Sidebar (KMultiTabBar::KMultiTabBarPosition pos, class MainWindow *mainwin, TQWidget *parent); @@ -253,7 +253,7 @@ class Sidebar : public KMultiTabBar class MainWindow : public KParts::MainWindow { Q_OBJECT - TQ_OBJECT + friend class ToolView; diff --git a/kate/app/kwritemain.h b/kate/app/kwritemain.h index 0e56cb2a6..3e2abe860 100644 --- a/kate/app/kwritemain.h +++ b/kate/app/kwritemain.h @@ -38,7 +38,7 @@ class KRecentFilesAction; class KWrite : public KParts::MainWindow { Q_OBJECT - TQ_OBJECT + public: KWrite(KTextEditor::Document * = 0L); @@ -123,7 +123,7 @@ class KWrite : public KParts::MainWindow class KWriteEditorChooser: public KDialogBase { Q_OBJECT - TQ_OBJECT + public: KWriteEditorChooser(TQWidget *parent); |