diff options
Diffstat (limited to 'noatun/modules/systray')
-rw-r--r-- | noatun/modules/systray/kitsystemtray.cpp | 6 | ||||
-rw-r--r-- | noatun/modules/systray/kitsystemtray.h | 2 | ||||
-rw-r--r-- | noatun/modules/systray/systray.cpp | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/noatun/modules/systray/kitsystemtray.cpp b/noatun/modules/systray/kitsystemtray.cpp index 61c0f035..95bbb698 100644 --- a/noatun/modules/systray/kitsystemtray.cpp +++ b/noatun/modules/systray/kitsystemtray.cpp @@ -44,11 +44,11 @@ #include <fixx11h.h> -KitSystemTray::KitSystemTray(const TQString &contextMenu, KMainWindow *tqparent, const char *name) - : KSystemTray(tqparent, name) +KitSystemTray::KitSystemTray(const TQString &contextMenu, KMainWindow *parent, const char *name) + : KSystemTray(parent, name) { tqsetAlignment(AlignHCenter | AlignVCenter); - menu = (KPopupMenu *)tqparent->guiFactory()->container(contextMenu, tqparent); + menu = (KPopupMenu *)parent->guiFactory()->container(contextMenu, parent); menu->insertTitle(SmallIcon("noatun"), TQString(), 0, 0); setAcceptDrops(true); } diff --git a/noatun/modules/systray/kitsystemtray.h b/noatun/modules/systray/kitsystemtray.h index d933a19e..153d772a 100644 --- a/noatun/modules/systray/kitsystemtray.h +++ b/noatun/modules/systray/kitsystemtray.h @@ -40,7 +40,7 @@ Q_OBJECT TQ_OBJECT public: - KitSystemTray(const TQString &contextMenu, KMainWindow *tqparent, const char *name = 0); + KitSystemTray(const TQString &contextMenu, KMainWindow *parent, const char *name = 0); void changeTitle(const TQPixmap &, const TQString &); protected: virtual void showEvent(TQShowEvent *); diff --git a/noatun/modules/systray/systray.cpp b/noatun/modules/systray/systray.cpp index 57ce2105..c298df37 100644 --- a/noatun/modules/systray/systray.cpp +++ b/noatun/modules/systray/systray.cpp @@ -72,7 +72,7 @@ const int COVER_MAXH = 128; class PassivePopup : public KPassivePopup { public: - PassivePopup(TQWidget *tqparent = 0, const char *name = 0) : KPassivePopup(tqparent, name) {} + PassivePopup(TQWidget *parent = 0, const char *name = 0) : KPassivePopup(parent, name) {} protected: virtual void enterEvent(TQEvent *) |