summaryrefslogtreecommitdiffstats
path: root/starter/menu.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 14:16:39 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 14:16:39 +0900
commite1fc10f0a34ce8a2282e1009bcc863f1a93889b4 (patch)
tree630146ca7b55b2ec008aab552bbd3781407fc556 /starter/menu.h
parent31149c65cca5348dfd890dfb2ffe027f544f6ccb (diff)
downloadtde-style-baghira-e1fc10f0a34ce8a2282e1009bcc863f1a93889b4.tar.gz
tde-style-baghira-e1fc10f0a34ce8a2282e1009bcc863f1a93889b4.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'starter/menu.h')
-rw-r--r--starter/menu.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/starter/menu.h b/starter/menu.h
index aecbc6a..9deea68 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);
@@ -248,7 +248,7 @@ class TQStringList;
class SearchLine : public KLineEdit
{
- Q_OBJECT
+ TQ_OBJECT
public:
SearchLine( TQWidget * parent );
bool blocked;
@@ -270,7 +270,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 );