summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 12:35:19 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 12:35:19 +0900
commitbd6c87d5b200c621524b7d3e2053e3875477a918 (patch)
treebe2a904b72a91b2dff85fb6652890ee689f7d143
parentff2a80a1f4619db8fd6d3ecaa7f8d7259347c4fe (diff)
downloadkxmleditor-bd6c87d5b200c621524b7d3e2053e3875477a918.tar.gz
kxmleditor-bd6c87d5b200c621524b7d3e2053e3875477a918.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--kxmleditor/kxmleditorshell.h2
-rw-r--r--part/actions.h4
-rw-r--r--part/kxe_treeview.h2
-rw-r--r--part/kxe_viewattributes.h2
-rw-r--r--part/kxe_viewelement.h2
-rw-r--r--part/kxearchiveextssettings.h2
-rw-r--r--part/kxeattributedialog.h2
-rw-r--r--part/kxechardatadialog.h2
-rw-r--r--part/kxechoosestringdialog.h2
-rw-r--r--part/kxeconfiguration.h2
-rw-r--r--part/kxedocument.h2
-rw-r--r--part/kxeelementdialog.h2
-rw-r--r--part/kxeprocinstrdialog.h2
-rw-r--r--part/kxesearchdialog.h2
-rw-r--r--part/kxesettings.h2
-rw-r--r--part/kxespecprocinstrdialog.h2
-rw-r--r--part/kxetexteditordialog.h2
-rw-r--r--part/kxmleditorfactory.h2
-rw-r--r--part/kxmleditorpart.h4
19 files changed, 21 insertions, 21 deletions
diff --git a/kxmleditor/kxmleditorshell.h b/kxmleditor/kxmleditorshell.h
index 438c32c..fa91208 100644
--- a/kxmleditor/kxmleditorshell.h
+++ b/kxmleditor/kxmleditorshell.h
@@ -39,7 +39,7 @@ class KXEShellManager;
*/
class KXMLEditorShell : public KParts::MainWindow
{
- Q_OBJECT
+ TQ_OBJECT
public:
/** @short Constructor
diff --git a/part/actions.h b/part/actions.h
index f6d9af7..14d80d5 100644
--- a/part/actions.h
+++ b/part/actions.h
@@ -28,7 +28,7 @@ class TQComboBox;
class KXmlEditorComboAction : public TDEAction
{
- Q_OBJECT
+ TQ_OBJECT
public:
KXmlEditorComboAction(const TQString& text, int accel, const TQObject *receiver, const char *member, TQObject* parent, const char* name);
~KXmlEditorComboAction();
@@ -79,7 +79,7 @@ private:
class ToolbarLabel : public TQLabel
{
- Q_OBJECT
+ TQ_OBJECT
public:
ToolbarLabel( const TQString & text );
};
diff --git a/part/kxe_treeview.h b/part/kxe_treeview.h
index 481797e..f307ca2 100644
--- a/part/kxe_treeview.h
+++ b/part/kxe_treeview.h
@@ -41,7 +41,7 @@ class KXE_TreeViewItem;
*/
class KXE_TreeView : public TDEListView
{
- Q_OBJECT
+ TQ_OBJECT
public:
KXE_TreeView( KXMLGUIClient * pGUIClient, TQWidget * pParent = 0, const char * pszName = 0 );
diff --git a/part/kxe_viewattributes.h b/part/kxe_viewattributes.h
index 9b92d60..cf7d886 100644
--- a/part/kxe_viewattributes.h
+++ b/part/kxe_viewattributes.h
@@ -26,7 +26,7 @@
*/
class KXE_ViewAttributes : public TQTable
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/part/kxe_viewelement.h b/part/kxe_viewelement.h
index 219c4fa..72ad060 100644
--- a/part/kxe_viewelement.h
+++ b/part/kxe_viewelement.h
@@ -37,7 +37,7 @@ class KXESyntaxHighlighter;
*/
class KXE_ViewElement : public TQSplitter
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/part/kxearchiveextssettings.h b/part/kxearchiveextssettings.h
index 9cf9bc8..db8923a 100644
--- a/part/kxearchiveextssettings.h
+++ b/part/kxearchiveextssettings.h
@@ -32,7 +32,7 @@ class KXEArchiveExtsSettingsPage;
*/
class KXEArchiveExtsSettings : public KXESettings
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/part/kxeattributedialog.h b/part/kxeattributedialog.h
index 25b8879..5461ad8 100644
--- a/part/kxeattributedialog.h
+++ b/part/kxeattributedialog.h
@@ -24,7 +24,7 @@
class KXEAttributeDialog : public KXEAttributeDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
KXEAttributeDialog( TQWidget * pParent = 0, const char * pszName = 0, bool fModal = true, WFlags fl = 0 );
diff --git a/part/kxechardatadialog.h b/part/kxechardatadialog.h
index 2e263a8..aad82d4 100644
--- a/part/kxechardatadialog.h
+++ b/part/kxechardatadialog.h
@@ -29,7 +29,7 @@ enum CharDataKind
class KXECharDataDialog : public KXECharDataDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
KXECharDataDialog( TQWidget * pParent = 0, const char * pszName = 0, bool fModal = true, WFlags fl = 0 );
diff --git a/part/kxechoosestringdialog.h b/part/kxechoosestringdialog.h
index 13c12cc..4e663f0 100644
--- a/part/kxechoosestringdialog.h
+++ b/part/kxechoosestringdialog.h
@@ -29,7 +29,7 @@ or select any string
class KXEChooseStringDialog : public KXEChooseStringDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
KXEChooseStringDialog(TQWidget *, const char *, const char *, const char *);
diff --git a/part/kxeconfiguration.h b/part/kxeconfiguration.h
index 44acfe7..7e53c2f 100644
--- a/part/kxeconfiguration.h
+++ b/part/kxeconfiguration.h
@@ -41,7 +41,7 @@ class KDialogBase;
*/
class KXEConfiguration : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/part/kxedocument.h b/part/kxedocument.h
index 83039bf..9260c95 100644
--- a/part/kxedocument.h
+++ b/part/kxedocument.h
@@ -41,7 +41,7 @@ Stores XML document data which can be manipulated by KXMLEditor application.
*/
class KXEDocument : public TQObject, public TQDomDocument, public KXMLGUIClient
{
- Q_OBJECT
+ TQ_OBJECT
public:
/** @short Constructor */
KXEDocument(TQObject *parent=0, const char *name=0);
diff --git a/part/kxeelementdialog.h b/part/kxeelementdialog.h
index fec812c..1a705db 100644
--- a/part/kxeelementdialog.h
+++ b/part/kxeelementdialog.h
@@ -22,7 +22,7 @@
class KXEElementDialog : public KXEElementDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
KXEElementDialog( TQWidget * pParent = 0, const char * pszName = 0, bool fModal = true, WFlags fl = 0 );
diff --git a/part/kxeprocinstrdialog.h b/part/kxeprocinstrdialog.h
index 2fac93b..953fd95 100644
--- a/part/kxeprocinstrdialog.h
+++ b/part/kxeprocinstrdialog.h
@@ -22,7 +22,7 @@
class KXEProcInstrDialog : public KXEProcInstrDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
KXEProcInstrDialog( TQWidget * pParent = 0, const char * pszName = 0, bool fModal = true, WFlags fl = 0 );
diff --git a/part/kxesearchdialog.h b/part/kxesearchdialog.h
index 3ec8630..9d77da4 100644
--- a/part/kxesearchdialog.h
+++ b/part/kxesearchdialog.h
@@ -30,7 +30,7 @@
// TODO add possibility to search backwards
class KXESearchDialog : public KXESearchDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
KXESearchDialog( TQWidget * pParent, const char * pszName = 0, bool bModal = true );
diff --git a/part/kxesettings.h b/part/kxesettings.h
index f8713b6..a44b3e4 100644
--- a/part/kxesettings.h
+++ b/part/kxesettings.h
@@ -32,7 +32,7 @@ class TQFrame;
*/
class KXESettings : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/part/kxespecprocinstrdialog.h b/part/kxespecprocinstrdialog.h
index 128dd20..9251647 100644
--- a/part/kxespecprocinstrdialog.h
+++ b/part/kxespecprocinstrdialog.h
@@ -28,7 +28,7 @@
class KXESpecProcInstrDialog : public KXESpecProcInstrDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
KXESpecProcInstrDialog(TQWidget *parent=0, const char *name=0);
diff --git a/part/kxetexteditordialog.h b/part/kxetexteditordialog.h
index d5e02c9..a07f869 100644
--- a/part/kxetexteditordialog.h
+++ b/part/kxetexteditordialog.h
@@ -33,7 +33,7 @@
class KXETextEditorDialog : public KXETextEditorDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
KXETextEditorDialog(TQWidget *parent=0, const char *name=0);
~KXETextEditorDialog();
diff --git a/part/kxmleditorfactory.h b/part/kxmleditorfactory.h
index 9a19bf2..69e399c 100644
--- a/part/kxmleditorfactory.h
+++ b/part/kxmleditorfactory.h
@@ -31,7 +31,7 @@ class KXEConfiguration;
*/
class KXMLEditorFactory : public KParts::Factory
{
- Q_OBJECT
+ TQ_OBJECT
public:
/** @brief Constructor */
diff --git a/part/kxmleditorpart.h b/part/kxmleditorpart.h
index 8139554..62146cb 100644
--- a/part/kxmleditorpart.h
+++ b/part/kxmleditorpart.h
@@ -47,7 +47,7 @@ class KXEDocument;
/** @short This is the KPart of KXMLEditor. */
class KXMLEditorPart : public KParts::ReadWritePart
{
- Q_OBJECT
+ TQ_OBJECT
public:
/** @short Constructor
@@ -426,7 +426,7 @@ signals:
*/
class KXMLEditorBrowserExtension : public KParts::BrowserExtension
{
- Q_OBJECT
+ TQ_OBJECT
public:
/** @short Constructor */