From kde-commits Wed May 21 07:49:19 2008 From: Laurent Montel Date: Wed, 21 May 2008 07:49:19 +0000 To: kde-commits Subject: extragear/plasma/applets/fifteenPuzzle/src Message-Id: <1211356159.947195.22052.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=121135640924515 SVN commit 810632 by mlaurent: Now we can display contextual action M +6 -5 fifteenPuzzle.cpp M +1 -2 fifteenPuzzle.h --- trunk/extragear/plasma/applets/fifteenPuzzle/src/fifteenPuzzle.cpp #810631:810632 @@ -68,11 +68,6 @@ } } -QList FifteenPuzzle::contextActions() -{ - return actions; -} - void FifteenPuzzle::createConfigurationInterface(KConfigDialog *parent) { if (configDialog == 0) { @@ -130,5 +125,11 @@ connect(shuffle, SIGNAL(triggered(bool)), board, SLOT(shuffle())); } +QList FifteenPuzzle::contextualActions() +{ + return actions; +} + + #include "fifteenPuzzle.moc" --- trunk/extragear/plasma/applets/fifteenPuzzle/src/fifteenPuzzle.h #810631:810632 @@ -33,8 +33,7 @@ void init(); void constraintsEvent(Plasma::Constraints constraints); - QList contextActions(); - + virtual QList contextualActions(); protected slots: void configAccepted();