--compiler.warningsCount();
--compiler.warningsCount(); svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=765001
This commit is contained in:
parent
17ddc75c3a
commit
76747db2d9
@ -37,7 +37,7 @@ namespace Plasma
|
||||
class AppletBrowserWidget::Private
|
||||
{
|
||||
public:
|
||||
Private(Corona* co, Containment* cont, AppletBrowserWidget* w)
|
||||
Private(Containment* cont, AppletBrowserWidget* w)
|
||||
: containment(cont),
|
||||
appletList(0),
|
||||
config("plasmarc"),
|
||||
@ -125,7 +125,7 @@ void AppletBrowserWidget::Private::updateRunningApplets()
|
||||
/*
|
||||
AppletBrowserWidget::AppletBrowserWidget(Plasma::Corona * corona, bool showButtons, QWidget * parent, Qt::WindowFlags f)
|
||||
: QWidget(parent, f),
|
||||
d(new Private(corona, 0, this)),
|
||||
d(new Private(0, this)),
|
||||
m_showButtons( showButtons )
|
||||
{
|
||||
init();
|
||||
@ -133,7 +133,7 @@ AppletBrowserWidget::AppletBrowserWidget(Plasma::Corona * corona, bool showButto
|
||||
*/
|
||||
AppletBrowserWidget::AppletBrowserWidget(Plasma::Containment * containment, bool showButtons, QWidget * parent, Qt::WindowFlags f)
|
||||
: QWidget(parent, f),
|
||||
d(new Private(0, containment, this)),
|
||||
d(new Private(containment, this)),
|
||||
m_showButtons( showButtons )
|
||||
{
|
||||
init();
|
||||
|
@ -1012,6 +1012,8 @@ void Icon::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
|
||||
|
||||
void Icon::mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event)
|
||||
{
|
||||
Q_UNUSED(event)
|
||||
|
||||
emit doubleClicked();
|
||||
if (!KGlobalSettings::singleClick()) {
|
||||
emit activated();
|
||||
|
Loading…
x
Reference in New Issue
Block a user