diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:07:00 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:07:00 -0600 |
commit | 1a7e498bdb3f755b79c06cb87fe4fad2cf8e7bf3 (patch) | |
tree | 7aca707994f0758ad30d3bcc0041d5b246f2269e /kgeography/src | |
parent | 84ab9f7387b7993eed7c393763b3dc89dfa3a56d (diff) | |
download | tdeedu-1a7e498bdb3f755b79c06cb87fe4fad2cf8e7bf3.tar.gz tdeedu-1a7e498bdb3f755b79c06cb87fe4fad2cf8e7bf3.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'kgeography/src')
-rw-r--r-- | kgeography/src/askwidget.h | 2 | ||||
-rw-r--r-- | kgeography/src/boxasker.h | 2 | ||||
-rw-r--r-- | kgeography/src/kgeography.h | 2 | ||||
-rw-r--r-- | kgeography/src/mapasker.h | 2 | ||||
-rw-r--r-- | kgeography/src/mapchooser.h | 2 | ||||
-rw-r--r-- | kgeography/src/mapwidget.h | 2 | ||||
-rw-r--r-- | kgeography/src/mypopup.h | 2 | ||||
-rw-r--r-- | kgeography/src/popupmanager.h | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/kgeography/src/askwidget.h b/kgeography/src/askwidget.h index ff9ad8fd..6c3c046c 100644 --- a/kgeography/src/askwidget.h +++ b/kgeography/src/askwidget.h @@ -23,7 +23,7 @@ class KGmap; class askWidget : public TQWidget { Q_OBJECT - TQ_OBJECT + public: askWidget(TQWidget *parent, KGmap *m, TQWidget *w, uint count, bool showLabel = true); virtual ~askWidget(); diff --git a/kgeography/src/boxasker.h b/kgeography/src/boxasker.h index 7186d446..0d476575 100644 --- a/kgeography/src/boxasker.h +++ b/kgeography/src/boxasker.h @@ -22,7 +22,7 @@ class TQVBoxLayout; class boxAsker : public askWidget { Q_OBJECT - TQ_OBJECT + public: boxAsker(TQWidget *parent, KGmap *m, TQWidget *w, uint count); ~boxAsker(); diff --git a/kgeography/src/kgeography.h b/kgeography/src/kgeography.h index 0be945b7..24498d04 100644 --- a/kgeography/src/kgeography.h +++ b/kgeography/src/kgeography.h @@ -27,7 +27,7 @@ class askWidget; class kgeography : public KMainWindow { Q_OBJECT - TQ_OBJECT + public: kgeography(); ~kgeography(); diff --git a/kgeography/src/mapasker.h b/kgeography/src/mapasker.h index e70ead24..e016074c 100644 --- a/kgeography/src/mapasker.h +++ b/kgeography/src/mapasker.h @@ -25,7 +25,7 @@ class mapWidget; class mapAsker : public askWidget { Q_OBJECT - TQ_OBJECT + public: mapAsker(TQWidget *parent, KGmap *m, TQWidget *w, bool asker, uint count = 0); ~mapAsker(); diff --git a/kgeography/src/mapchooser.h b/kgeography/src/mapchooser.h index 44f15567..801f95ae 100644 --- a/kgeography/src/mapchooser.h +++ b/kgeography/src/mapchooser.h @@ -21,7 +21,7 @@ class mapChooser : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: mapChooser(TQWidget *parent); ~mapChooser(); diff --git a/kgeography/src/mapwidget.h b/kgeography/src/mapwidget.h index 5b024bb0..9ba6fe01 100644 --- a/kgeography/src/mapwidget.h +++ b/kgeography/src/mapwidget.h @@ -18,7 +18,7 @@ class mapWidget : public TQWidget { Q_OBJECT - TQ_OBJECT + public: mapWidget(TQWidget *parent); diff --git a/kgeography/src/mypopup.h b/kgeography/src/mypopup.h index 71cc5555..b177704c 100644 --- a/kgeography/src/mypopup.h +++ b/kgeography/src/mypopup.h @@ -16,7 +16,7 @@ class myPopup : public TQFrame { Q_OBJECT - TQ_OBJECT + friend class popupManager; private: diff --git a/kgeography/src/popupmanager.h b/kgeography/src/popupmanager.h index 2da2a94b..e097a31e 100644 --- a/kgeography/src/popupmanager.h +++ b/kgeography/src/popupmanager.h @@ -20,7 +20,7 @@ class myPopup; class popupManager : public TQObject { Q_OBJECT - TQ_OBJECT + public: popupManager(TQWidget *parent); |