From kde-commits Wed Aug 10 00:17:41 2005 From: =?utf-8?q?Aaron=20J=2E=20Seigo?= Date: Wed, 10 Aug 2005 00:17:41 +0000 To: kde-commits Subject: branches/KDE/3.5/kdebase/kicker/applets/systemtray Message-Id: <1123633061.502833.25437.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=112363309600012 SVN commit 444389 by aseigo: i suppose we need a slot here, don't we =P M +1 -1 systemtrayapplet.cpp M +1 -0 systemtrayapplet.h --- branches/KDE/3.5/kdebase/kicker/applets/systemtray/systemtrayapplet.cpp #444388:444389 @@ -721,7 +721,7 @@ { QPopupMenu* contextMenu = new QPopupMenu(this); contextMenu->insertItem(SmallIcon("configure"), i18n("Configure System Tray"), - this, SLOT(preferences())); + this, SLOT(configure())); contextMenu->exec(static_cast(e)->globalPos()); --- branches/KDE/3.5/kdebase/kicker/applets/systemtray/systemtrayapplet.h #444388:444389 @@ -77,6 +77,7 @@ void settingsDialogFinished(); void applySettings(); void checkAutoRetract(); + void configure() { preferences(); } private: void embedWindow( WId w, bool kde_tray );