From 09c625b216deb3e115620742307b0f9eb269a513 Mon Sep 17 00:00:00 2001 From: fgerlits Date: Fri, 1 Jul 2005 19:22:21 +0000 Subject: [PATCH] got rid of "VU meter" and "Next playing" labels --- livesupport/products/gLiveSupport/src/MasterPanelWindow.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/livesupport/products/gLiveSupport/src/MasterPanelWindow.cxx b/livesupport/products/gLiveSupport/src/MasterPanelWindow.cxx index 6a6062f6c..43f1a1c8d 100644 --- a/livesupport/products/gLiveSupport/src/MasterPanelWindow.cxx +++ b/livesupport/products/gLiveSupport/src/MasterPanelWindow.cxx @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.41 $ + Version : $Revision: 1.42 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/src/MasterPanelWindow.cxx,v $ ------------------------------------------------------------------------------*/ @@ -100,12 +100,12 @@ MasterPanelWindow :: MasterPanelWindow (Ptr::Ref gLiveSupport, nowPlayingBin->set_size_request(-1, 104); // set up the VU meter widget - vuMeterWidget = Gtk::manage(new Gtk::Label("VU meter")); + vuMeterWidget = Gtk::manage(new Gtk::Label("")); vuMeterBin = Gtk::manage(widgetFactory->createBlueBin()); vuMeterBin->add(*vuMeterWidget); vuMeterBin->set_size_request(200, 40); // set up the next playing widget - nextPlayingWidget = Gtk::manage(new Gtk::Label("next playing")); + nextPlayingWidget = Gtk::manage(new Gtk::Label("")); nextPlayingBin = Gtk::manage(widgetFactory->createBlueBin()); nextPlayingBin->add(*nextPlayingWidget); nextPlayingBin->set_size_request(200, 59);