summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-17 16:09:32 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-17 16:09:32 -0600
commit0fed1a188b8d8be416550c63e2d5954f06434386 (patch)
tree19f346183997f815423bd63cb9f2e86baa1f3b14 /src
parent01b73b195ac252a67a00cfa0fa6a1ce4555f7304 (diff)
downloadtdevelop-0fed1a188b8d8be416550c63e2d5954f06434386.tar.gz
tdevelop-0fed1a188b8d8be416550c63e2d5954f06434386.zip
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'src')
-rw-r--r--src/core.h2
-rw-r--r--src/documentationpart.h2
-rw-r--r--src/editorproxy.h2
-rw-r--r--src/generalinfowidget.h2
-rw-r--r--src/languageselectwidget.h2
-rw-r--r--src/mainwindowshare.h2
-rw-r--r--src/multibuffer.h2
-rw-r--r--src/newui/button.h2
-rw-r--r--src/newui/buttonbar.h2
-rw-r--r--src/newui/ddockwindow.h2
-rw-r--r--src/newui/dmainwindow.h2
-rw-r--r--src/newui/docksplitter.h2
-rw-r--r--src/newui/dtabwidget.h2
-rw-r--r--src/partcontroller.h2
-rw-r--r--src/plugincontroller.h2
-rw-r--r--src/pluginselectdialog.h2
-rw-r--r--src/profileengine/editor/profileeditor.h2
-rw-r--r--src/projectmanager.h2
-rw-r--r--src/projectsession.h2
-rw-r--r--src/simplemainwindow.h2
-rw-r--r--src/splashscreen.h2
-rw-r--r--src/statusbar.h2
22 files changed, 22 insertions, 22 deletions
diff --git a/src/core.h b/src/core.h
index 1cf07788..2588e232 100644
--- a/src/core.h
+++ b/src/core.h
@@ -20,7 +20,7 @@ Core implementation.
class Core : public KDevCore
{
Q_OBJECT
- TQ_OBJECT
+
public:
diff --git a/src/documentationpart.h b/src/documentationpart.h
index 0603715f..dd86ce8a 100644
--- a/src/documentationpart.h
+++ b/src/documentationpart.h
@@ -11,7 +11,7 @@ Implements shell-dependent "duplicate" and "open in new window" actions of KDevH
class HTMLDocumentationPart : public KDevHTMLPart
{
Q_OBJECT
- TQ_OBJECT
+
public:
diff --git a/src/editorproxy.h b/src/editorproxy.h
index aabafa9d..d71d4cda 100644
--- a/src/editorproxy.h
+++ b/src/editorproxy.h
@@ -18,7 +18,7 @@ class TQTimer;
class EditorProxy : public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
public:
diff --git a/src/generalinfowidget.h b/src/generalinfowidget.h
index 0a93f610..d7f0b3b1 100644
--- a/src/generalinfowidget.h
+++ b/src/generalinfowidget.h
@@ -23,7 +23,7 @@ General project information widget.
*/
class GeneralInfoWidget : public GeneralInfoWidgetBase {
Q_OBJECT
- TQ_OBJECT
+
public:
diff --git a/src/languageselectwidget.h b/src/languageselectwidget.h
index 8d4de93b..1201fd78 100644
--- a/src/languageselectwidget.h
+++ b/src/languageselectwidget.h
@@ -21,7 +21,7 @@ class TQListView;
class LanguageSelectWidget : public TQWidget
{
Q_OBJECT
- TQ_OBJECT
+
public:
/* for selection of project parts */
diff --git a/src/mainwindowshare.h b/src/mainwindowshare.h
index 99248b41..f178b014 100644
--- a/src/mainwindowshare.h
+++ b/src/mainwindowshare.h
@@ -30,7 +30,7 @@ Shared main window functionality.
class MainWindowShare : public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
public:
MainWindowShare(TQObject* pParent = 0L, const char* name = 0L);
~MainWindowShare() {}
diff --git a/src/multibuffer.h b/src/multibuffer.h
index 51b79466..c60e779e 100644
--- a/src/multibuffer.h
+++ b/src/multibuffer.h
@@ -40,7 +40,7 @@ typedef TQMap< KParts::Part*, TQPair<int, int> > ActivationMap;
class MultiBuffer : public TQSplitter
{
Q_OBJECT
- TQ_OBJECT
+
public:
MultiBuffer( TQWidget * parent = 0 );
virtual ~MultiBuffer();
diff --git a/src/newui/button.h b/src/newui/button.h
index 96948267..82dc6ee9 100644
--- a/src/newui/button.h
+++ b/src/newui/button.h
@@ -39,7 +39,7 @@ A TQPushButton derivative with a size of a TQToolBar. Button can be rotated
*/
class Button : public TQPushButton {
Q_OBJECT
- TQ_OBJECT
+
public:
Button(ButtonBar *parent, const TQString text, const TQIconSet &icon = TQIconSet(),
const TQString &description = TQString());
diff --git a/src/newui/buttonbar.h b/src/newui/buttonbar.h
index 041c5bf4..2732ac50 100644
--- a/src/newui/buttonbar.h
+++ b/src/newui/buttonbar.h
@@ -53,7 +53,7 @@ placing on the left(right, bottom, top) corners of a window as a bar with slider
*/
class ButtonBar : public TQWidget {
Q_OBJECT
- TQ_OBJECT
+
public:
ButtonBar(Place place, ButtonMode mode = IconsAndText,
TQWidget *parent = 0, const char *name = 0);
diff --git a/src/newui/ddockwindow.h b/src/newui/ddockwindow.h
index fd6c0ba8..fb6b0976 100644
--- a/src/newui/ddockwindow.h
+++ b/src/newui/ddockwindow.h
@@ -40,7 +40,7 @@ namespace Ideal {
class DDockWindow : public TQDockWindow {
Q_OBJECT
- TQ_OBJECT
+
public:
enum Position { Bottom, Left, Right };
diff --git a/src/newui/dmainwindow.h b/src/newui/dmainwindow.h
index a865add3..2f1c2ed5 100644
--- a/src/newui/dmainwindow.h
+++ b/src/newui/dmainwindow.h
@@ -33,7 +33,7 @@ namespace Ideal {
/**Main window which provides simplified IDEA mode.*/
class DMainWindow: public KParts::MainWindow {
Q_OBJECT
- TQ_OBJECT
+
public:
DMainWindow(TQWidget *parent = 0, const char *name = 0);
virtual ~DMainWindow();
diff --git a/src/newui/docksplitter.h b/src/newui/docksplitter.h
index 7368dc2e..b4bf05c9 100644
--- a/src/newui/docksplitter.h
+++ b/src/newui/docksplitter.h
@@ -32,7 +32,7 @@ class DockWidget;
*/
class DockSplitter: public TQSplitter {
Q_OBJECT
- TQ_OBJECT
+
public:
DockSplitter(Qt::Orientation orientation, TQWidget *parent = 0, const char *name = 0);
~DockSplitter();
diff --git a/src/newui/dtabwidget.h b/src/newui/dtabwidget.h
index f47c7e54..22d861b5 100644
--- a/src/newui/dtabwidget.h
+++ b/src/newui/dtabwidget.h
@@ -26,7 +26,7 @@ class TQToolButton;
class DTabWidget: public KTabWidget {
Q_OBJECT
- TQ_OBJECT
+
public:
DTabWidget(TQWidget *parent=0, const char *name=0);
diff --git a/src/partcontroller.h b/src/partcontroller.h
index c811df7a..edec5afc 100644
--- a/src/partcontroller.h
+++ b/src/partcontroller.h
@@ -43,7 +43,7 @@ Part controler implementation.
class PartController : public KDevPartController
{
Q_OBJECT
- TQ_OBJECT
+
public:
diff --git a/src/plugincontroller.h b/src/plugincontroller.h
index 79d77511..18bc8906 100644
--- a/src/plugincontroller.h
+++ b/src/plugincontroller.h
@@ -23,7 +23,7 @@ Loads and unloads plugins.
class PluginController : public KDevPluginController
{
Q_OBJECT
- TQ_OBJECT
+
public:
diff --git a/src/pluginselectdialog.h b/src/pluginselectdialog.h
index 3adfdac4..d27f2940 100644
--- a/src/pluginselectdialog.h
+++ b/src/pluginselectdialog.h
@@ -20,7 +20,7 @@ class PluginController;
class PluginSelectDialog : public PluginSelectDialogBase
{
Q_OBJECT
- TQ_OBJECT
+
public:
PluginSelectDialog( TQWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
diff --git a/src/profileengine/editor/profileeditor.h b/src/profileengine/editor/profileeditor.h
index dd1acb87..ad5610f0 100644
--- a/src/profileengine/editor/profileeditor.h
+++ b/src/profileengine/editor/profileeditor.h
@@ -29,7 +29,7 @@ class KListViewItem;
class ProfileEditor : public ProfileEditorBase {
Q_OBJECT
- TQ_OBJECT
+
public:
ProfileEditor(TQWidget *parent = 0, const char *name = 0);
diff --git a/src/projectmanager.h b/src/projectmanager.h
index ed71b48c..5d932d99 100644
--- a/src/projectmanager.h
+++ b/src/projectmanager.h
@@ -40,7 +40,7 @@ Loads and unloads projects.
class ProjectManager : public TQObject, public KXMLGUIClient
{
Q_OBJECT
- TQ_OBJECT
+
public:
diff --git a/src/projectsession.h b/src/projectsession.h
index f5370d28..a5596558 100644
--- a/src/projectsession.h
+++ b/src/projectsession.h
@@ -35,7 +35,7 @@ class KDevPlugin;
class ProjectSession : public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
// methods
public:
ProjectSession();
diff --git a/src/simplemainwindow.h b/src/simplemainwindow.h
index 7577fff4..b72cb9e1 100644
--- a/src/simplemainwindow.h
+++ b/src/simplemainwindow.h
@@ -36,7 +36,7 @@ namespace KParts {
class SimpleMainWindow: public DMainWindow, public KDevMainWindow {
Q_OBJECT
- TQ_OBJECT
+
public:
SimpleMainWindow(TQWidget* parent = 0, const char *name = 0);
virtual ~SimpleMainWindow();
diff --git a/src/splashscreen.h b/src/splashscreen.h
index 317ecdc3..b8d5563c 100644
--- a/src/splashscreen.h
+++ b/src/splashscreen.h
@@ -14,7 +14,7 @@ Splash screen.
class KDevSplashScreen : public TQSplashScreen
{
Q_OBJECT
- TQ_OBJECT
+
public:
KDevSplashScreen(const TQPixmap& pixmap, WFlags f = 0);
diff --git a/src/statusbar.h b/src/statusbar.h
index a17ef3a9..b8cfeb29 100644
--- a/src/statusbar.h
+++ b/src/statusbar.h
@@ -27,7 +27,7 @@ Status bar.
class KDevStatusBar : public KStatusBar
{
Q_OBJECT
- TQ_OBJECT
+
public:
KDevStatusBar( TQWidget *parent=0, const char *name=0 );