diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:09:02 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:09:02 -0600 |
commit | 77b1faf4f0ca591326668ef9683bd4af69575e8f (patch) | |
tree | 837e0b81aa14ac19d377477c7f1a03d2aecc8dbb /kteatime | |
parent | 917fefcdc792744e5a49af34ea267b17988c1883 (diff) | |
download | tdetoys-77b1faf4f0ca591326668ef9683bd4af69575e8f.tar.gz tdetoys-77b1faf4f0ca591326668ef9683bd4af69575e8f.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'kteatime')
-rw-r--r-- | kteatime/timeedit.h | 4 | ||||
-rw-r--r-- | kteatime/toplevel.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kteatime/timeedit.h b/kteatime/timeedit.h index 7ff162f..8b317b8 100644 --- a/kteatime/timeedit.h +++ b/kteatime/timeedit.h @@ -21,7 +21,7 @@ class TQBoxLayout; class WrappingSpinBox : public TQSpinBox { Q_OBJECT - TQ_OBJECT + public: WrappingSpinBox(int minValue, int maxValue, int step = 1, TQWidget *parent=0, const char *name=0); @@ -43,7 +43,7 @@ signals: class TimeEdit : public TQWidget { Q_OBJECT - TQ_OBJECT + public: TimeEdit(TQWidget* parent = 0, const char* name = 0); diff --git a/kteatime/toplevel.h b/kteatime/toplevel.h index 4ad443e..1daaecb 100644 --- a/kteatime/toplevel.h +++ b/kteatime/toplevel.h @@ -43,7 +43,7 @@ class TimeEdit; class TopLevel : public KSystemTray { Q_OBJECT - TQ_OBJECT + public: |