diff options
Diffstat (limited to 'noatun/modules/systray/kitsystemtray.cpp')
-rw-r--r-- | noatun/modules/systray/kitsystemtray.cpp | 6 |
1 files changed, 3 insertions, 3 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); } |