diff -u kdebase-workspace-4.0.3/debian/patches/series kdebase-workspace-4.0.3/debian/patches/series --- kdebase-workspace-4.0.3/debian/patches/series +++ kdebase-workspace-4.0.3/debian/patches/series @@ -12,6 +12,7 @@ kubuntu_10_hide_systemsettings.diff kubuntu_12_hide_kmenuedit.diff kubuntu_13_hide_klipper.diff +kubuntu_14_no_zoom.diff #branding kubuntu_31_kickoff_footer_branding.diff diff -u kdebase-workspace-4.0.3/debian/changelog kdebase-workspace-4.0.3/debian/changelog --- kdebase-workspace-4.0.3/debian/changelog +++ kdebase-workspace-4.0.3/debian/changelog @@ -1,3 +1,10 @@ +kdebase-workspace (4:4.0.3-0ubuntu2) hardy; urgency=low + + * Added patch kubuntu_601_no_zoom.diff to remove the Zoom In/Out + buttons from the plasma toolbox (LP: #197865) + + -- Terence Simpson Fri, 04 Apr 2008 04:33:37 +0100 + kdebase-workspace (4:4.0.3-0ubuntu1) hardy; urgency=low * New upstream release only in patch2: unchanged: --- kdebase-workspace-4.0.3.orig/debian/patches/kubuntu_14_no_zoom.diff +++ kdebase-workspace-4.0.3/debian/patches/kubuntu_14_no_zoom.diff @@ -0,0 +1,19 @@ +diff -Nru kdebase-workspace-4.0.3.orig/libs/plasma/containment.cpp kdebase-workspace-4.0.3/libs/plasma/containment.cpp +--- kdebase-workspace-4.0.3.orig/libs/plasma/containment.cpp 2008-03-27 20:34:44.000000000 +0000 ++++ kdebase-workspace-4.0.3/libs/plasma/containment.cpp 2008-04-04 03:26:50.000000000 +0100 +@@ -182,11 +182,11 @@ + Plasma::Widget *addWidgetTool = addToolBoxTool("addwidgets", "list-add", i18n("Add Widgets")); + connect(addWidgetTool, SIGNAL(clicked()), this, SIGNAL(showAddWidgets())); + +- Plasma::Widget *zoomInTool = addToolBoxTool("zoomIn", "zoom-in", i18n("Zoom In")); +- connect(zoomInTool, SIGNAL(clicked()), this, SIGNAL(zoomIn())); ++// 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())); ++// Plasma::Widget *zoomOutTool = addToolBoxTool("zoomOut", "zoom-out", i18n("Zoom Out")); ++// connect(zoomOutTool, SIGNAL(clicked()), this, SIGNAL(zoomOut())); + } + } else { + delete d->toolbox;