From 185b962c88ce05cb840f25b00a48934c555b3f79 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 20 Jul 2023 14:16:39 +0900 Subject: Replace Q_OBJECT with TQ_OBJECT Signed-off-by: Michele Calgaro (cherry picked from commit e1fc10f0a34ce8a2282e1009bcc863f1a93889b4) --- starter/menu.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'starter/menu.h') diff --git a/starter/menu.h b/starter/menu.h index 7e7b044..1d360e2 100644 --- a/starter/menu.h +++ b/starter/menu.h @@ -34,7 +34,7 @@ class Panel : public TQWidget//TQScrollView { friend class StartMenu; friend class StartMenuButton; -Q_OBJECT +TQ_OBJECT public: Panel(int size = 32, TQWidget * parent = 0, const char * name = 0); @@ -79,7 +79,7 @@ class TQTextDrag; class StartMenuButton : public TQWidget { friend class Panel; - Q_OBJECT + TQ_OBJECT public: enum Orientation { Horizontal = 0, Vertical, Status }; @@ -123,7 +123,7 @@ class AppList; class StartMenuEntry : public TQWidget { friend class AppList; - Q_OBJECT + TQ_OBJECT public: StartMenuEntry(KService * service, TQString relPath, int size = 32, bool neewbie = false, TQWidget * parent = 0); ~StartMenuEntry(); @@ -183,7 +183,7 @@ class HelpDialog; class AppList : public TQScrollView { friend class StartMenu; -Q_OBJECT +TQ_OBJECT public: AppList(int size = 32, TQWidget * parent = 0); @@ -247,7 +247,7 @@ class TQStringList; class SearchLine : public KLineEdit { - Q_OBJECT + TQ_OBJECT public: SearchLine( TQWidget * parent ); bool blocked; @@ -266,7 +266,7 @@ class KSqueezedTextLabel; class StartMenu : public TQWidget { friend class starter; // to allow setting the shortcutlis directly - Q_OBJECT + TQ_OBJECT public: enum PanelPosition { North = 0, South, West, East, Nowhere }; StartMenu ( int size = 32, TQWidget * parent = 0, WFlags f = 0 ); -- cgit v1.2.1