summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 15:07:57 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-21 17:28:49 +0900
commit9c40420b261ea30555cabc299829028ee345b9e5 (patch)
tree0bec930107d651516239f2592512b2057b9f5452 /src
parent3f9cda007f52077d533117c4fa2441629ad9d796 (diff)
downloadtdevelop-9c40420b261ea30555cabc299829028ee345b9e5.tar.gz
tdevelop-9c40420b261ea30555cabc299829028ee345b9e5.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 c041eac0..0d0e3bc1 100644
--- a/src/core.h
+++ b/src/core.h
@@ -19,7 +19,7 @@ Core implementation.
*/
class Core : public KDevCore
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/src/documentationpart.h b/src/documentationpart.h
index dd86ce8a..bb00a165 100644
--- a/src/documentationpart.h
+++ b/src/documentationpart.h
@@ -10,7 +10,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 7cbd9ec9..d23147cd 100644
--- a/src/editorproxy.h
+++ b/src/editorproxy.h
@@ -17,7 +17,7 @@ class TQTimer;
class EditorProxy : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/src/generalinfowidget.h b/src/generalinfowidget.h
index d7f0b3b1..bfc85462 100644
--- a/src/generalinfowidget.h
+++ b/src/generalinfowidget.h
@@ -22,7 +22,7 @@ class TQDomDocument;
General project information widget.
*/
class GeneralInfoWidget : public GeneralInfoWidgetBase {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/src/languageselectwidget.h b/src/languageselectwidget.h
index 75349930..40ef86ad 100644
--- a/src/languageselectwidget.h
+++ b/src/languageselectwidget.h
@@ -20,7 +20,7 @@ class TQListView;
class LanguageSelectWidget : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/src/mainwindowshare.h b/src/mainwindowshare.h
index a9ec620a..d112c6f9 100644
--- a/src/mainwindowshare.h
+++ b/src/mainwindowshare.h
@@ -29,7 +29,7 @@ Shared main window functionality.
*/
class MainWindowShare : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
MainWindowShare(TQObject* pParent = 0L, const char* name = 0L);
diff --git a/src/multibuffer.h b/src/multibuffer.h
index b0a024f1..9893a7c6 100644
--- a/src/multibuffer.h
+++ b/src/multibuffer.h
@@ -39,7 +39,7 @@ typedef TQMap< KParts::Part*, TQPair<int, int> > ActivationMap;
class MultiBuffer : public TQSplitter
{
- Q_OBJECT
+ TQ_OBJECT
public:
MultiBuffer( TQWidget * parent = 0 );
diff --git a/src/newui/button.h b/src/newui/button.h
index 63d0da59..68028fa9 100644
--- a/src/newui/button.h
+++ b/src/newui/button.h
@@ -38,7 +38,7 @@ A TQPushButton derivative with a size of a TQToolBar. Button can be rotated
(placed onto different places in ideal mode).
*/
class Button : public TQPushButton {
- Q_OBJECT
+ TQ_OBJECT
public:
Button(ButtonBar *parent, const TQString text, const TQIconSet &icon = TQIconSet(),
diff --git a/src/newui/buttonbar.h b/src/newui/buttonbar.h
index f0ae292b..f698fdb0 100644
--- a/src/newui/buttonbar.h
+++ b/src/newui/buttonbar.h
@@ -52,7 +52,7 @@ Looks like a toolbar but has another behaviour. It is suitable for
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,
diff --git a/src/newui/ddockwindow.h b/src/newui/ddockwindow.h
index 4190958a..29421914 100644
--- a/src/newui/ddockwindow.h
+++ b/src/newui/ddockwindow.h
@@ -39,7 +39,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 7ccb51f6..8745c454 100644
--- a/src/newui/dmainwindow.h
+++ b/src/newui/dmainwindow.h
@@ -32,7 +32,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);
diff --git a/src/newui/docksplitter.h b/src/newui/docksplitter.h
index c61f6c91..c28153dc 100644
--- a/src/newui/docksplitter.h
+++ b/src/newui/docksplitter.h
@@ -31,7 +31,7 @@ class DockWidget;
@short Splitter for docks
*/
class DockSplitter: public TQSplitter {
- Q_OBJECT
+ TQ_OBJECT
public:
DockSplitter(Qt::Orientation orientation, TQWidget *parent = 0, const char *name = 0);
diff --git a/src/newui/dtabwidget.h b/src/newui/dtabwidget.h
index 4d7b6f7f..c1b2fca1 100644
--- a/src/newui/dtabwidget.h
+++ b/src/newui/dtabwidget.h
@@ -25,7 +25,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 2e621c38..e5fc872b 100644
--- a/src/partcontroller.h
+++ b/src/partcontroller.h
@@ -42,7 +42,7 @@ Part controler implementation.
*/
class PartController : public KDevPartController
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/src/plugincontroller.h b/src/plugincontroller.h
index d5c3f423..dc721698 100644
--- a/src/plugincontroller.h
+++ b/src/plugincontroller.h
@@ -22,7 +22,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 aa85937c..fc00c5f7 100644
--- a/src/pluginselectdialog.h
+++ b/src/pluginselectdialog.h
@@ -19,7 +19,7 @@ class PluginController;
class PluginSelectDialog : public PluginSelectDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/src/profileengine/editor/profileeditor.h b/src/profileengine/editor/profileeditor.h
index 45763d98..8a154a7b 100644
--- a/src/profileengine/editor/profileeditor.h
+++ b/src/profileengine/editor/profileeditor.h
@@ -28,7 +28,7 @@ class TQListViewItem;
class TDEListViewItem;
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 3a92409e..e3df8b05 100644
--- a/src/projectmanager.h
+++ b/src/projectmanager.h
@@ -39,7 +39,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 e386bdbc..a5b3ab38 100644
--- a/src/projectsession.h
+++ b/src/projectsession.h
@@ -34,7 +34,7 @@ class KDevPlugin;
**/
class ProjectSession : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
// methods
public:
diff --git a/src/simplemainwindow.h b/src/simplemainwindow.h
index ede22520..e0328b1d 100644
--- a/src/simplemainwindow.h
+++ b/src/simplemainwindow.h
@@ -35,7 +35,7 @@ namespace KParts {
}
class SimpleMainWindow: public DMainWindow, public KDevMainWindow {
- Q_OBJECT
+ TQ_OBJECT
public:
SimpleMainWindow(TQWidget* parent = 0, const char *name = 0);
diff --git a/src/splashscreen.h b/src/splashscreen.h
index b8d5563c..3206b923 100644
--- a/src/splashscreen.h
+++ b/src/splashscreen.h
@@ -13,7 +13,7 @@ Splash screen.
*/
class KDevSplashScreen : public TQSplashScreen
{
-Q_OBJECT
+TQ_OBJECT
public:
diff --git a/src/statusbar.h b/src/statusbar.h
index 2f5370ef..4a61a07e 100644
--- a/src/statusbar.h
+++ b/src/statusbar.h
@@ -26,7 +26,7 @@ Status bar.
*/
class KDevStatusBar : public KStatusBar
{
- Q_OBJECT
+ TQ_OBJECT
public: