From cb869ce141058536eaab5571b628cfd237aff4d7 Mon Sep 17 00:00:00 2001 From: Thomas Georgiou Date: Fri, 4 Jan 2008 03:09:30 +0000 Subject: [PATCH] Make zooming invisible to user (doesn't do anything yet) svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=757079 --- containment.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/containment.cpp b/containment.cpp index f8475aceb..50dd51b39 100644 --- a/containment.cpp +++ b/containment.cpp @@ -184,11 +184,14 @@ void Containment::setContainmentType(Containment::Type type) Plasma::Widget *addWidgetTool = addToolBoxTool("addwidgets", "list-add", i18n("Add Widgets")); connect(addWidgetTool, SIGNAL(clicked()), this, SIGNAL(showAddWidgets())); +//zooming provides no functionality for 4.0 (not implemented yet) and will confuse user +#if 0 Plasma::Widget *zoomInTool = addToolBoxTool("zoomIn", "zoom-in", i18n("Zoom In")); connect(zoomInTool, SIGNAL(clicked()), this, SIGNAL(zoomIn())); Plasma::Widget *zoomOutTool = addToolBoxTool("zoomOut", "zoom-out", i18n("Zoom Out")); connect(zoomOutTool, SIGNAL(clicked()), this, SIGNAL(zoomOut())); +#endif } } else { delete d->toolbox;