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/project | |
parent | 1179541f92513abc4cc3798ab2bb96960b3daebd (diff) | |
download | tdewebdev-3da0c9594ec7967c35cc9851c9403f8303ec542b.tar.gz tdewebdev-3da0c9594ec7967c35cc9851c9403f8303ec542b.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'quanta/project')
-rw-r--r-- | quanta/project/eventconfigurationdlg.h | 2 | ||||
-rw-r--r-- | quanta/project/eventeditordlg.h | 2 | ||||
-rw-r--r-- | quanta/project/membereditdlg.h | 2 | ||||
-rw-r--r-- | quanta/project/project.h | 2 | ||||
-rw-r--r-- | quanta/project/projectnewfinal.h | 2 | ||||
-rw-r--r-- | quanta/project/projectnewgeneral.h | 2 | ||||
-rw-r--r-- | quanta/project/projectnewlocal.h | 2 | ||||
-rw-r--r-- | quanta/project/projectnewweb.h | 2 | ||||
-rw-r--r-- | quanta/project/projectprivate.h | 2 | ||||
-rw-r--r-- | quanta/project/projectupload.h | 2 | ||||
-rw-r--r-- | quanta/project/rescanprj.h | 2 | ||||
-rw-r--r-- | quanta/project/teammembersdlg.h | 2 |
12 files changed, 12 insertions, 12 deletions
diff --git a/quanta/project/eventconfigurationdlg.h b/quanta/project/eventconfigurationdlg.h index db1933f0..9841d009 100644 --- a/quanta/project/eventconfigurationdlg.h +++ b/quanta/project/eventconfigurationdlg.h @@ -27,7 +27,7 @@ typedef TQMap<TQString, TQValueList<EventAction> > EventActions; class EventConfigurationDlg : public EventConfigurationDlgS { Q_OBJECT - TQ_OBJECT + public: EventConfigurationDlg(KActionCollection *actionCollection, TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/quanta/project/eventeditordlg.h b/quanta/project/eventeditordlg.h index 8cb4f10b..697821c6 100644 --- a/quanta/project/eventeditordlg.h +++ b/quanta/project/eventeditordlg.h @@ -27,7 +27,7 @@ class KComboBox; class EventEditorDlg : public EventEditorDlgS { Q_OBJECT - TQ_OBJECT + public: EventEditorDlg(KActionCollection *actionCollection, TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/quanta/project/membereditdlg.h b/quanta/project/membereditdlg.h index 2cecefb2..32d26633 100644 --- a/quanta/project/membereditdlg.h +++ b/quanta/project/membereditdlg.h @@ -25,7 +25,7 @@ class MemberEditDlg : public MemberEditDlgS { Q_OBJECT - TQ_OBJECT + public: MemberEditDlg(TQWidget *parent = 0, const char *name = 0); ~MemberEditDlg(); diff --git a/quanta/project/project.h b/quanta/project/project.h index fc88c13b..9014d16f 100644 --- a/quanta/project/project.h +++ b/quanta/project/project.h @@ -53,7 +53,7 @@ struct SubProject { class Project : public TQObject { Q_OBJECT - TQ_OBJECT + friend class ProjectPrivate; // need this because I use the signals public: diff --git a/quanta/project/projectnewfinal.h b/quanta/project/projectnewfinal.h index 67888701..654af85a 100644 --- a/quanta/project/projectnewfinal.h +++ b/quanta/project/projectnewfinal.h @@ -26,7 +26,7 @@ class ProjectNewFinal : public ProjectNewFinalS { Q_OBJECT - TQ_OBJECT + public: ProjectNewFinal(TQWidget *parent=0, const char *name=0); ~ProjectNewFinal(); diff --git a/quanta/project/projectnewgeneral.h b/quanta/project/projectnewgeneral.h index 450183d2..6a1839b7 100644 --- a/quanta/project/projectnewgeneral.h +++ b/quanta/project/projectnewgeneral.h @@ -28,7 +28,7 @@ class KURL; class ProjectNewGeneral : public ProjectNewGeneralS { Q_OBJECT - TQ_OBJECT + public: ProjectNewGeneral(TQWidget *parent=0, const char *name=0); ~ProjectNewGeneral(); diff --git a/quanta/project/projectnewlocal.h b/quanta/project/projectnewlocal.h index 4e3fd6d5..84952553 100644 --- a/quanta/project/projectnewlocal.h +++ b/quanta/project/projectnewlocal.h @@ -30,7 +30,7 @@ class CopyTo; class ProjectNewLocal : public ProjectNewLocalS { Q_OBJECT - TQ_OBJECT + public: ProjectNewLocal(TQWidget *parent=0, const char *name=0); ~ProjectNewLocal(); diff --git a/quanta/project/projectnewweb.h b/quanta/project/projectnewweb.h index 596d1fe4..fa7ff2e0 100644 --- a/quanta/project/projectnewweb.h +++ b/quanta/project/projectnewweb.h @@ -34,7 +34,7 @@ class KURL; class ProjectNewWeb : public ProjectNewWebS { Q_OBJECT - TQ_OBJECT + public: ProjectNewWeb(TQWidget *parent=0, const char *name=0); ~ProjectNewWeb(); diff --git a/quanta/project/projectprivate.h b/quanta/project/projectprivate.h index d3eeec0b..aa01a91d 100644 --- a/quanta/project/projectprivate.h +++ b/quanta/project/projectprivate.h @@ -51,7 +51,7 @@ class ProjectPrivate : public TQObject { Q_OBJECT - TQ_OBJECT + public: ProjectPrivate(Project *p); diff --git a/quanta/project/projectupload.h b/quanta/project/projectupload.h index ca136dce..473f3e7e 100644 --- a/quanta/project/projectupload.h +++ b/quanta/project/projectupload.h @@ -38,7 +38,7 @@ class UploadProfileDlgS; class ProjectUpload : public ProjectUploadS { Q_OBJECT - TQ_OBJECT + public: /** Initializes the dialog. If showOnlyProfiles is true, the dialog displays only the list of profiles, no real upload can be performed. diff --git a/quanta/project/rescanprj.h b/quanta/project/rescanprj.h index 0f0df657..bfc7b635 100644 --- a/quanta/project/rescanprj.h +++ b/quanta/project/rescanprj.h @@ -34,7 +34,7 @@ struct URLListEntry{ class RescanPrj : public RescanPrjDir { Q_OBJECT - TQ_OBJECT + public: RescanPrj(const ProjectList &p_prjFileList, const KURL& p_baseURL, const TQRegExp &p_excludeRx, TQWidget *parent=0, const char *name=0, bool modal = true); diff --git a/quanta/project/teammembersdlg.h b/quanta/project/teammembersdlg.h index 9a97ac0a..2e7d900e 100644 --- a/quanta/project/teammembersdlg.h +++ b/quanta/project/teammembersdlg.h @@ -25,7 +25,7 @@ class TeamMembersDlg : public TeamMembersDlgS { Q_OBJECT - TQ_OBJECT + public: TeamMembersDlg(TQWidget *parent = 0, const char *name = 0); |