diff options
author | Timothy Pearson <[email protected]> | 2012-02-17 15:59:12 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-02-17 15:59:12 -0600 |
commit | 97c73a8ce7e26d36d99b80f7e4dfe30363d004f9 (patch) | |
tree | 0626bbee735eb3df57c4868c82d79790d87eae12 /k9devices | |
parent | 65c4beb1dbed77013f3478a0ef904ef1d286f811 (diff) | |
download | k9copy-97c73a8ce7e26d36d99b80f7e4dfe30363d004f9.tar.gz k9copy-97c73a8ce7e26d36d99b80f7e4dfe30363d004f9.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'k9devices')
-rw-r--r-- | k9devices/k9cddrive.h | 4 | ||||
-rw-r--r-- | k9devices/k9dbusdispatch.h | 2 | ||||
-rw-r--r-- | k9devices/k9halconnection.h | 2 | ||||
-rw-r--r-- | k9devices/k9haldevice.h | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/k9devices/k9cddrive.h b/k9devices/k9cddrive.h index 9a4a374..0588527 100644 --- a/k9devices/k9cddrive.h +++ b/k9devices/k9cddrive.h @@ -32,7 +32,7 @@ class k9HalConnection; class k9CdDrive : public TQObject { Q_OBJECT - TQ_OBJECT + public: k9CdDrive(); ~k9CdDrive(); @@ -60,7 +60,7 @@ private: class k9CdDrives : public TQObject { Q_OBJECT - TQ_OBJECT + public: k9CdDrives(); ~k9CdDrives(); diff --git a/k9devices/k9dbusdispatch.h b/k9devices/k9dbusdispatch.h index 8e86426..5ee2554 100644 --- a/k9devices/k9dbusdispatch.h +++ b/k9devices/k9dbusdispatch.h @@ -43,7 +43,7 @@ public: class K9DBusDispatch : public TQObject { Q_OBJECT - TQ_OBJECT + public: K9DBusDispatch(TQObject *parent = 0, const char *name = 0); diff --git a/k9devices/k9halconnection.h b/k9devices/k9halconnection.h index 6c532d8..e4936df 100644 --- a/k9devices/k9halconnection.h +++ b/k9devices/k9halconnection.h @@ -39,7 +39,7 @@ namespace DBusTQt { class k9HalConnection : public TQObject { Q_OBJECT - TQ_OBJECT + friend class k9HalDevice; public: static k9HalConnection* getInstance(); diff --git a/k9devices/k9haldevice.h b/k9devices/k9haldevice.h index e77adef..83d5fdc 100644 --- a/k9devices/k9haldevice.h +++ b/k9devices/k9haldevice.h @@ -28,7 +28,7 @@ class k9HalConnection; class k9HalDevice : public TQObject { Q_OBJECT - TQ_OBJECT + public: k9HalDevice(TQObject *parent = 0, const char *name = 0); |