diff options
Diffstat (limited to 'starter')
-rw-r--r-- | starter/baghiralinkdrag.h | 2 | ||||
-rw-r--r-- | starter/menu.h | 12 | ||||
-rw-r--r-- | starter/starter.h | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/starter/baghiralinkdrag.h b/starter/baghiralinkdrag.h index 23dc9c0..d75c399 100644 --- a/starter/baghiralinkdrag.h +++ b/starter/baghiralinkdrag.h @@ -6,7 +6,7 @@ class BaghiraLinkDrag : public TQDragObject { -// Q_OBJECT +// TQ_OBJECT public: BaghiraLinkDrag(TQString title, TQString command, TQString icon, int index = -1, TQWidget* dragSource = 0); 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 ); diff --git a/starter/starter.h b/starter/starter.h index 3cbd14a..59634f4 100644 --- a/starter/starter.h +++ b/starter/starter.h @@ -24,7 +24,7 @@ class StarterConfig; class starter : public KPanelApplet, virtual public StarterIface { - Q_OBJECT + TQ_OBJECT public: starter(const TQString& configFile, Type t = Normal, int actions = 0, |