aboutsummaryrefslogtreecommitdiff
path: root/src/IconbarTool.cc
diff options
context:
space:
mode:
authorMark Tiefenbruck <mark@fluxbox.org>2007-12-27 21:55:24 (GMT)
committerMark Tiefenbruck <mark@fluxbox.org>2007-12-27 21:55:24 (GMT)
commitb5c354b994bc06667abe35e2d528c0f025703c4e (patch)
tree081fd3207053a06cb50931ccec3237bc614f10eb /src/IconbarTool.cc
parent1f5cd12facc662de240b36bf3c5c14f40adf391b (diff)
downloadfluxbox-b5c354b994bc06667abe35e2d528c0f025703c4e.zip
fluxbox-b5c354b994bc06667abe35e2d528c0f025703c4e.tar.bz2
architecture astronomy
Diffstat (limited to 'src/IconbarTool.cc')
-rw-r--r--src/IconbarTool.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/IconbarTool.cc b/src/IconbarTool.cc
index 99907c7..294754c 100644
--- a/src/IconbarTool.cc
+++ b/src/IconbarTool.cc
@@ -32,7 +32,6 @@
32#include "IconButton.hh" 32#include "IconButton.hh"
33#include "Workspace.hh" 33#include "Workspace.hh"
34#include "FbMenu.hh" 34#include "FbMenu.hh"
35#include "BoolMenuItem.hh"
36#include "FbTk/ObjectRegistry.hh" 35#include "FbTk/ObjectRegistry.hh"
37#include "WinClient.hh" 36#include "WinClient.hh"
38#include "FocusControl.hh" 37#include "FocusControl.hh"
@@ -43,6 +42,7 @@
43#include "FbTk/I18n.hh" 42#include "FbTk/I18n.hh"
44#include "FbTk/Menu.hh" 43#include "FbTk/Menu.hh"
45#include "FbTk/MenuItem.hh" 44#include "FbTk/MenuItem.hh"
45#include "FbTk/BoolMenuItem.hh"
46#include "FbTk/RefCount.hh" 46#include "FbTk/RefCount.hh"
47#include "FbTk/SimpleCommand.hh" 47#include "FbTk/SimpleCommand.hh"
48#include "FbTk/ImageControl.hh" 48#include "FbTk/ImageControl.hh"
@@ -288,9 +288,9 @@ IconbarTool::IconbarTool(const FbTk::FbWindow &parent, IconbarTheme &theme,
288 save_and_reconfig->add(reconfig); 288 save_and_reconfig->add(reconfig);
289 save_and_reconfig->add(save); 289 save_and_reconfig->add(save);
290 RefCount<Command> s_and_reconfig(save_and_reconfig); 290 RefCount<Command> s_and_reconfig(save_and_reconfig);
291 m_menu.insert(new BoolMenuItem(_FB_XTEXT(Toolbar, ShowIcons, 291 m_menu.insert(new FbTk::BoolMenuItem(_FB_XTEXT(Toolbar, ShowIcons,
292 "Show Pictures", "chooses if little icons are shown next to title in the iconbar"), 292 "Show Pictures", "chooses if little icons are shown next to title in the iconbar"),
293 *m_rc_use_pixmap, s_and_reconfig)); 293 m_rc_use_pixmap, s_and_reconfig));
294 m_menu.updateMenu(); 294 m_menu.updateMenu();
295 // must be internal menu, otherwise toolbar main menu tries to delete it. 295 // must be internal menu, otherwise toolbar main menu tries to delete it.
296 m_menu.setInternalMenu(); 296 m_menu.setInternalMenu();