From fb7b88bb06f44c624dcac91fef036f9e748da8e1 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 20 Jul 2023 13:56:32 +0900 Subject: [PATCH] Replace Q_OBJECT with TQ_OBJECT Signed-off-by: Michele Calgaro --- kkbswitch/kbconfigdlg.h | 2 +- kkbswitch/kbpickicondlg.h | 2 +- kkbswitch/kbswitchapp.h | 2 +- kkbswitch/kbswitchintf.h | 2 +- kkbswitch/kbswitchtrayicon.h | 2 +- kkbswitch/singlewindowwatcher.h | 2 +- kkbswitch/windowclasswatcher.h | 2 +- kkbswitch/windowwatcher.h | 2 +- kkbswitch/xkeyboard.h | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/kkbswitch/kbconfigdlg.h b/kkbswitch/kbconfigdlg.h index aa93fef..2577fc3 100644 --- a/kkbswitch/kbconfigdlg.h +++ b/kkbswitch/kbconfigdlg.h @@ -34,7 +34,7 @@ class KKeyChooser; */ class KBConfigDlg : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: KBConfigDlg(KBConfig *kbconf, TQWidget *parent=0, const char *name=0); ~KBConfigDlg(); diff --git a/kkbswitch/kbpickicondlg.h b/kkbswitch/kbpickicondlg.h index fba5cd5..754be4d 100644 --- a/kkbswitch/kbpickicondlg.h +++ b/kkbswitch/kbpickicondlg.h @@ -30,7 +30,7 @@ class TDEListBox; */ class KBPickIconDlg : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: KBPickIconDlg(const TQString ¤tPath, const TQPixmap ¤tPixmap, TQWidget *parent=0, const char *name=0); diff --git a/kkbswitch/kbswitchapp.h b/kkbswitch/kbswitchapp.h index ccebdf6..d76aa52 100644 --- a/kkbswitch/kbswitchapp.h +++ b/kkbswitch/kbswitchapp.h @@ -52,7 +52,7 @@ typedef TQMap KBWindowMap;*/ */ class KBSwitchApp : public KUniqueApplication { - Q_OBJECT + TQ_OBJECT public: KBSwitchApp(); ~KBSwitchApp(); diff --git a/kkbswitch/kbswitchintf.h b/kkbswitch/kbswitchintf.h index 703254a..9fad92e 100644 --- a/kkbswitch/kbswitchintf.h +++ b/kkbswitch/kbswitchintf.h @@ -35,7 +35,7 @@ moc doesn't know about dcopidl! */ class KBSwitchIntf : public TQObject, public DCOPObject { K_DCOP - Q_OBJECT + TQ_OBJECT signals: void nextGroupSelected(); void groupSelected(int groupno); diff --git a/kkbswitch/kbswitchtrayicon.h b/kkbswitch/kbswitchtrayicon.h index 52f5e20..d9c5fcf 100644 --- a/kkbswitch/kbswitchtrayicon.h +++ b/kkbswitch/kbswitchtrayicon.h @@ -28,7 +28,7 @@ */ class KBSwitchTrayIcon : public KSystemTray { - Q_OBJECT + TQ_OBJECT public: KBSwitchTrayIcon(KBConfig *conf); ~KBSwitchTrayIcon(); diff --git a/kkbswitch/singlewindowwatcher.h b/kkbswitch/singlewindowwatcher.h index 2073ec4..637b07a 100644 --- a/kkbswitch/singlewindowwatcher.h +++ b/kkbswitch/singlewindowwatcher.h @@ -29,7 +29,7 @@ Watches for changes of active window and keep a group per each window @author Leonid Zeitlin */ class SingleWindowWatcher : public WindowWatcher { - Q_OBJECT + TQ_OBJECT private: struct KBWinInfo { int groupno; diff --git a/kkbswitch/windowclasswatcher.h b/kkbswitch/windowclasswatcher.h index a81382e..03e6e80 100644 --- a/kkbswitch/windowclasswatcher.h +++ b/kkbswitch/windowclasswatcher.h @@ -31,7 +31,7 @@ This class watcher for active window changes and keeps a group per window class @author Leonid Zeitlin */ class WindowClassWatcher : public WindowWatcher { - Q_OBJECT + TQ_OBJECT private: typedef TQMap WinClassMap; WinClassMap m_win_class_map; diff --git a/kkbswitch/windowwatcher.h b/kkbswitch/windowwatcher.h index 6861c5b..e8d7b23 100644 --- a/kkbswitch/windowwatcher.h +++ b/kkbswitch/windowwatcher.h @@ -33,7 +33,7 @@ This class watches for active window changes and notifies KKBSwitch that the keyboard group needs to be canged */ class WindowWatcher : public TQObject { - Q_OBJECT + TQ_OBJECT protected: KBConfig *m_kbconf; KWinModule *m_twin_module; diff --git a/kkbswitch/xkeyboard.h b/kkbswitch/xkeyboard.h index dc2454a..19d200d 100644 --- a/kkbswitch/xkeyboard.h +++ b/kkbswitch/xkeyboard.h @@ -36,7 +36,7 @@ class TQStringList; */ class XKeyboard : public TQObject { - Q_OBJECT + TQ_OBJECT private: #ifndef HAVE_LIBXKLAVIER int m_event_code;