summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 12:55:25 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 12:55:25 +0900
commita1b12fcc36c58f543e271eec2db24effade79d2f (patch)
tree5c4641e712f0b412015e8e36a36460e267439603
parent1f356d41b9f7e12b5289dfb32d699f0976c08d36 (diff)
downloadknmap-a1b12fcc.tar.gz
knmap-a1b12fcc.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--src/commonwidget.h2
-rw-r--r--src/compoundwidget.h2
-rw-r--r--src/htmlwidget.h2
-rw-r--r--src/indexwidget.h2
-rw-r--r--src/knmap.h2
-rw-r--r--src/loggingoptions.h2
-rw-r--r--src/mainwidget.h2
-rw-r--r--src/outputwidget.h2
-rw-r--r--src/pandsoptions.h2
-rw-r--r--src/profiledialog.h2
-rw-r--r--src/scannamedialog.h2
-rw-r--r--src/scanstack.h2
-rw-r--r--src/scanwidget.h2
-rw-r--r--src/simpleoptions.h2
-rw-r--r--src/stylesheetdialog.h2
-rw-r--r--src/timingwidget.h2
-rw-r--r--src/whatsthis.h2
17 files changed, 17 insertions, 17 deletions
diff --git a/src/commonwidget.h b/src/commonwidget.h
index 306d634..2c571a9 100644
--- a/src/commonwidget.h
+++ b/src/commonwidget.h
@@ -47,7 +47,7 @@ class TQStringList;
// =============================
class CommonWidget : public TQWidget
-{ Q_OBJECT
+{ TQ_OBJECT
public:
CommonWidget( TQWidget* parent, const char* name = NULL );
diff --git a/src/compoundwidget.h b/src/compoundwidget.h
index f31816a..9086096 100644
--- a/src/compoundwidget.h
+++ b/src/compoundwidget.h
@@ -42,7 +42,7 @@ class TQSpinBox;
// ===============================
class CompoundWidget : public TQWidget
-{ Q_OBJECT
+{ TQ_OBJECT
public:
CompoundWidget( TQWidget* parent, const char* name = NULL );
diff --git a/src/htmlwidget.h b/src/htmlwidget.h
index ba57b0f..2c87b8d 100644
--- a/src/htmlwidget.h
+++ b/src/htmlwidget.h
@@ -44,7 +44,7 @@ class StylesheetDialog;
class HTMLWidget : public TQWidget
-{ Q_OBJECT
+{ TQ_OBJECT
public:
HTMLWidget( TQStringList* stylesheetURLs, TQWidget* parent = NULL, const char* name = NULL );
diff --git a/src/indexwidget.h b/src/indexwidget.h
index 205e3b7..292d9e6 100644
--- a/src/indexwidget.h
+++ b/src/indexwidget.h
@@ -43,7 +43,7 @@ class ScanWidget;
// ============================
class IndexWidget : public TQScrollView
-{ Q_OBJECT
+{ TQ_OBJECT
public:
IndexWidget( ScanStack* scanStack, MainWidget* parent, const char* name = NULL );
diff --git a/src/knmap.h b/src/knmap.h
index 67bbd39..bb0df8d 100644
--- a/src/knmap.h
+++ b/src/knmap.h
@@ -43,7 +43,7 @@ class ScanWidget;
// ======================
class Knmap : public TDEMainWindow
-{ Q_OBJECT
+{ TQ_OBJECT
public:
Knmap( );
diff --git a/src/loggingoptions.h b/src/loggingoptions.h
index 1dc74a8..566cf28 100644
--- a/src/loggingoptions.h
+++ b/src/loggingoptions.h
@@ -42,7 +42,7 @@ class TDEConfig;
// ===============================
class LoggingOptions : public TQWidget
-{ Q_OBJECT
+{ TQ_OBJECT
public:
LoggingOptions( TQWidget* parent, const char* name = NULL );
diff --git a/src/mainwidget.h b/src/mainwidget.h
index a6b251a..bb6aa75 100644
--- a/src/mainwidget.h
+++ b/src/mainwidget.h
@@ -45,7 +45,7 @@ class ScanWidget;
// ===========================
class MainWidget : public TQSplitter
-{ Q_OBJECT
+{ TQ_OBJECT
public:
MainWidget( TQWidget* parent = NULL, const char* name = NULL );
diff --git a/src/outputwidget.h b/src/outputwidget.h
index f300883..af02622 100644
--- a/src/outputwidget.h
+++ b/src/outputwidget.h
@@ -39,7 +39,7 @@ class TDEConfig;
// =============================
class OutputWidget : public TQTextEdit
-{ Q_OBJECT
+{ TQ_OBJECT
public:
OutputWidget( TQWidget* parent = NULL, const char* name = NULL );
diff --git a/src/pandsoptions.h b/src/pandsoptions.h
index 99051be..7e3aced 100644
--- a/src/pandsoptions.h
+++ b/src/pandsoptions.h
@@ -41,7 +41,7 @@ class TDEConfig;
// ==============================
class PAndSOptions : public TQWidget
-{ Q_OBJECT
+{ TQ_OBJECT
public:
PAndSOptions( TQWidget* parent, const char* name = NULL );
diff --git a/src/profiledialog.h b/src/profiledialog.h
index 2a9fc6e..67a55cf 100644
--- a/src/profiledialog.h
+++ b/src/profiledialog.h
@@ -43,7 +43,7 @@ class TQString;
// ==============================
class ProfileDialog : public KDialogBase
-{ Q_OBJECT
+{ TQ_OBJECT
public:
enum Action
diff --git a/src/scannamedialog.h b/src/scannamedialog.h
index 62dfbd6..d94c0ef 100644
--- a/src/scannamedialog.h
+++ b/src/scannamedialog.h
@@ -41,7 +41,7 @@ class ScanWidget;
// ===============================
class ScanNameDialog : public KDialogBase
-{ Q_OBJECT
+{ TQ_OBJECT
public:
ScanNameDialog( ScanWidget* scanWidget, TQWidget* parent = NULL, const char* name = NULL );
diff --git a/src/scanstack.h b/src/scanstack.h
index 9feb827..2b1ecce 100644
--- a/src/scanstack.h
+++ b/src/scanstack.h
@@ -41,7 +41,7 @@ class ScanWidget;
// ==========================
class ScanStack : public TQWidgetStack
-{ Q_OBJECT
+{ TQ_OBJECT
public:
ScanStack( TQWidget* parent, const char* name = NULL );
diff --git a/src/scanwidget.h b/src/scanwidget.h
index e8c5413..a1ef15b 100644
--- a/src/scanwidget.h
+++ b/src/scanwidget.h
@@ -54,7 +54,7 @@ class TimingWidget;
// ===========================
class ScanWidget : public TQFrame
-{ Q_OBJECT
+{ TQ_OBJECT
public:
ScanWidget( const TQString& scanName,
diff --git a/src/simpleoptions.h b/src/simpleoptions.h
index b548e34..7fb52ac 100644
--- a/src/simpleoptions.h
+++ b/src/simpleoptions.h
@@ -40,7 +40,7 @@ class TDEConfig;
// ==============================
class SimpleOptions : public TQWidget
-{ Q_OBJECT
+{ TQ_OBJECT
public:
SimpleOptions( TQWidget* parent, const char* name = NULL );
diff --git a/src/stylesheetdialog.h b/src/stylesheetdialog.h
index fd200f2..34a823a 100644
--- a/src/stylesheetdialog.h
+++ b/src/stylesheetdialog.h
@@ -42,7 +42,7 @@ class TQStringList;
// =================================
class StylesheetDialog : public KDialogBase
-{ Q_OBJECT
+{ TQ_OBJECT
public:
StylesheetDialog( const TQString& currentStylesheetURL,
diff --git a/src/timingwidget.h b/src/timingwidget.h
index deb4164..b43e5c2 100644
--- a/src/timingwidget.h
+++ b/src/timingwidget.h
@@ -42,7 +42,7 @@ class TQRadioButton;
// =============================
class TimingWidget : public TQWidget
-{ Q_OBJECT
+{ TQ_OBJECT
public:
TimingWidget( TQWidget* parent, const char* name = NULL );
diff --git a/src/whatsthis.h b/src/whatsthis.h
index e325d1e..04ad610 100644
--- a/src/whatsthis.h
+++ b/src/whatsthis.h
@@ -40,7 +40,7 @@ class TQPoint;
// ==========================
class WhatsThis : public TQObject, public TQWhatsThis
-{ Q_OBJECT
+{ TQ_OBJECT
public:
WhatsThis( TQWidget* widget );