diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:09:42 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:09:42 -0600 |
commit | 3da0c9594ec7967c35cc9851c9403f8303ec542b (patch) | |
tree | e82a47b6c444f8931ee51ebc5b6985ecb3d68d39 /quanta/src | |
parent | 1179541f92513abc4cc3798ab2bb96960b3daebd (diff) | |
download | tdewebdev-3da0c9594ec7967c35cc9851c9403f8303ec542b.tar.gz tdewebdev-3da0c9594ec7967c35cc9851c9403f8303ec542b.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'quanta/src')
-rw-r--r-- | quanta/src/document.h | 2 | ||||
-rw-r--r-- | quanta/src/dtds.h | 2 | ||||
-rw-r--r-- | quanta/src/kqapp.h | 6 | ||||
-rw-r--r-- | quanta/src/quanta.h | 2 | ||||
-rw-r--r-- | quanta/src/quanta_init.h | 2 | ||||
-rw-r--r-- | quanta/src/quantadoc.h | 2 | ||||
-rw-r--r-- | quanta/src/quantaview.h | 2 | ||||
-rw-r--r-- | quanta/src/viewmanager.h | 2 |
8 files changed, 10 insertions, 10 deletions
diff --git a/quanta/src/document.h b/quanta/src/document.h index a7fda743..8ed866c3 100644 --- a/quanta/src/document.h +++ b/quanta/src/document.h @@ -68,7 +68,7 @@ namespace KTextEditor class Document : public TQWidget{ Q_OBJECT - TQ_OBJECT + public: Document(KTextEditor::Document *doc, diff --git a/quanta/src/dtds.h b/quanta/src/dtds.h index 4bc5f2f4..e532a934 100644 --- a/quanta/src/dtds.h +++ b/quanta/src/dtds.h @@ -49,7 +49,7 @@ struct DTDStruct; class DTDs : public TQObject { Q_OBJECT - TQ_OBJECT + public: diff --git a/quanta/src/kqapp.h b/quanta/src/kqapp.h index 728a3f63..b1b5f6df 100644 --- a/quanta/src/kqapp.h +++ b/quanta/src/kqapp.h @@ -28,7 +28,7 @@ class KSplashScreen; class KSplash : public TQFrame { Q_OBJECT - TQ_OBJECT + public: KSplash(); @@ -52,7 +52,7 @@ class KQApplicationPrivate class KQApplication : public KApplication, KQApplicationPrivate { Q_OBJECT - TQ_OBJECT + public: KQApplication(); @@ -65,7 +65,7 @@ class KQApplication : public KApplication, KQApplicationPrivate class KQUniqueApplication : public KUniqueApplication, KQApplicationPrivate { Q_OBJECT - TQ_OBJECT + public: KQUniqueApplication(); diff --git a/quanta/src/quanta.h b/quanta/src/quanta.h index d0216e17..8e7ce767 100644 --- a/quanta/src/quanta.h +++ b/quanta/src/quanta.h @@ -112,7 +112,7 @@ struct ToolbarEntry; class QuantaApp : public KMdiMainFrm, public DCOPWindowManagerIf { Q_OBJECT - TQ_OBJECT + friend class QuantaInit; diff --git a/quanta/src/quanta_init.h b/quanta/src/quanta_init.h index 17bbb09a..196c723c 100644 --- a/quanta/src/quanta_init.h +++ b/quanta/src/quanta_init.h @@ -42,7 +42,7 @@ class KConfig; class QuantaInit : public TQObject { Q_OBJECT - TQ_OBJECT + public: QuantaInit(QuantaApp * quantaApp); diff --git a/quanta/src/quantadoc.h b/quanta/src/quantadoc.h index ac7069d9..e40d1fa5 100644 --- a/quanta/src/quantadoc.h +++ b/quanta/src/quantadoc.h @@ -28,7 +28,7 @@ class KURL; class QuantaDoc : public TQObject { Q_OBJECT - TQ_OBJECT + public: diff --git a/quanta/src/quantaview.h b/quanta/src/quantaview.h index 3e34c43a..ebca2705 100644 --- a/quanta/src/quantaview.h +++ b/quanta/src/quantaview.h @@ -64,7 +64,7 @@ class Node; class QuantaView : public KMdiChildView { Q_OBJECT - TQ_OBJECT + public: diff --git a/quanta/src/viewmanager.h b/quanta/src/viewmanager.h index 31f0a761..3e755534 100644 --- a/quanta/src/viewmanager.h +++ b/quanta/src/viewmanager.h @@ -32,7 +32,7 @@ class KMdiChildView; class ViewManager : public TQObject { Q_OBJECT - TQ_OBJECT + public: /** Returns a reference to the viewmanager object */ static ViewManager* const ref(TQObject *parent = 0L, const char *name = 0L) |