diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:08:47 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:08:47 -0600 |
commit | 210090aed352271bcd474b28db9644d9461d7189 (patch) | |
tree | 90a41c57403e068d3d7616952c02aa3af88f3d7c /kmobile | |
parent | 4bed3ea970817c21a63e468df8e8a45517f751bb (diff) | |
download | tdepim-210090aed352271bcd474b28db9644d9461d7189.tar.gz tdepim-210090aed352271bcd474b28db9644d9461d7189.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'kmobile')
-rw-r--r-- | kmobile/devices/gnokii/gnokii_mobile.h | 2 | ||||
-rw-r--r-- | kmobile/devices/gnokii/gnokiiconfig.h | 2 | ||||
-rw-r--r-- | kmobile/devices/skeleton/skeleton.h | 2 | ||||
-rw-r--r-- | kmobile/kmobile.h | 2 | ||||
-rw-r--r-- | kmobile/kmobileclient.h | 2 | ||||
-rw-r--r-- | kmobile/kmobiledevice.h | 2 | ||||
-rw-r--r-- | kmobile/kmobileitem.h | 2 | ||||
-rw-r--r-- | kmobile/kmobileview.h | 2 | ||||
-rw-r--r-- | kmobile/pref.h | 6 | ||||
-rw-r--r-- | kmobile/systemtray.h | 2 |
10 files changed, 12 insertions, 12 deletions
diff --git a/kmobile/devices/gnokii/gnokii_mobile.h b/kmobile/devices/gnokii/gnokii_mobile.h index e3fe7bdef..782c2b92d 100644 --- a/kmobile/devices/gnokii/gnokii_mobile.h +++ b/kmobile/devices/gnokii/gnokii_mobile.h @@ -30,7 +30,7 @@ class KMobileGnokii : public KMobileDevice { Q_OBJECT - TQ_OBJECT + public: KMobileGnokii( TQObject *obj=0, const char *name=0, const TQStringList &args=TQStringList() ); ~KMobileGnokii(); diff --git a/kmobile/devices/gnokii/gnokiiconfig.h b/kmobile/devices/gnokii/gnokiiconfig.h index 9422fcedc..530bb4e43 100644 --- a/kmobile/devices/gnokii/gnokiiconfig.h +++ b/kmobile/devices/gnokii/gnokiiconfig.h @@ -26,7 +26,7 @@ class GnokiiConfig : public GnokiiConfigUI { Q_OBJECT - TQ_OBJECT + public: GnokiiConfig( TQWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); ~GnokiiConfig(); diff --git a/kmobile/devices/skeleton/skeleton.h b/kmobile/devices/skeleton/skeleton.h index ab3ce7701..922565b7e 100644 --- a/kmobile/devices/skeleton/skeleton.h +++ b/kmobile/devices/skeleton/skeleton.h @@ -29,7 +29,7 @@ class KMobileSkeleton : public KMobileDevice { Q_OBJECT - TQ_OBJECT + public: KMobileSkeleton( TQObject *obj=0, const char *name=0, const TQStringList &args=TQStringList() ); ~KMobileSkeleton(); diff --git a/kmobile/kmobile.h b/kmobile/kmobile.h index b576352fe..f9bfefb38 100644 --- a/kmobile/kmobile.h +++ b/kmobile/kmobile.h @@ -23,7 +23,7 @@ class SystemTray; class KMobile : public KMainWindow { Q_OBJECT - TQ_OBJECT + public: /** * Default Constructor diff --git a/kmobile/kmobileclient.h b/kmobile/kmobileclient.h index 8456776c6..72bf66050 100644 --- a/kmobile/kmobileclient.h +++ b/kmobile/kmobileclient.h @@ -11,7 +11,7 @@ class KDE_EXPORT KMobileClient : public DCOPClient { Q_OBJECT - TQ_OBJECT + public: KMobileClient(); virtual ~KMobileClient(); diff --git a/kmobile/kmobiledevice.h b/kmobile/kmobiledevice.h index b0b1a6540..b7961dd4d 100644 --- a/kmobile/kmobiledevice.h +++ b/kmobile/kmobiledevice.h @@ -65,7 +65,7 @@ class KConfig; class KDE_EXPORT KMobileDevice : public KLibFactory { Q_OBJECT - TQ_OBJECT + friend class KMobileView; public: diff --git a/kmobile/kmobileitem.h b/kmobile/kmobileitem.h index ba2042659..81878c8d0 100644 --- a/kmobile/kmobileitem.h +++ b/kmobile/kmobileitem.h @@ -13,7 +13,7 @@ class KMobileItem : public TQObject, public TQIconViewItem { Q_OBJECT - TQ_OBJECT + friend class KMobileView; public: KMobileItem(TQIconView *parent, KConfig *config, KService::Ptr service); diff --git a/kmobile/kmobileview.h b/kmobile/kmobileview.h index ee8b1e532..ccb207ed8 100644 --- a/kmobile/kmobileview.h +++ b/kmobile/kmobileview.h @@ -23,7 +23,7 @@ class KMobileItem; class KDE_EXPORT KMobileView : public TQIconView, public kmobileIface { Q_OBJECT - TQ_OBJECT + public: KMobileView(TQWidget *parent, KConfig *_config); virtual ~KMobileView(); diff --git a/kmobile/pref.h b/kmobile/pref.h index ad28b1de5..814303353 100644 --- a/kmobile/pref.h +++ b/kmobile/pref.h @@ -14,7 +14,7 @@ class KMobilePrefPageTwo; class KMobilePreferences : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: KMobilePreferences(); @@ -26,7 +26,7 @@ private: class KMobilePrefPageOne : public TQFrame { Q_OBJECT - TQ_OBJECT + public: KMobilePrefPageOne(TQWidget *parent = 0); }; @@ -34,7 +34,7 @@ public: class KMobilePrefPageTwo : public TQFrame { Q_OBJECT - TQ_OBJECT + public: KMobilePrefPageTwo(TQWidget *parent = 0); }; diff --git a/kmobile/systemtray.h b/kmobile/systemtray.h index 87843c306..29e723c18 100644 --- a/kmobile/systemtray.h +++ b/kmobile/systemtray.h @@ -28,7 +28,7 @@ class KAction; class SystemTray : public KSystemTray { Q_OBJECT - TQ_OBJECT + public: SystemTray(KMainWindow *parent = 0, const char *name = 0); |