all repos — fluxbox @ e21990f8f34c0b348d804598a79453e791ea08ee

custom fork of the fluxbox windowmanager

forgotten cosmetics
mathias mathias
commit

e21990f8f34c0b348d804598a79453e791ea08ee

parent

ec7ce1e029b45c25dcee60dad093b678edc0a96e

2 files changed, 7 insertions(+), 4 deletions(-)

jump to
M src/Slit.ccsrc/Slit.cc

@@ -59,6 +59,7 @@ #include "SlitTheme.hh"

#include "SlitClient.hh" #include "Xutil.hh" #include "FbAtoms.hh" +#include "FbTk/App.hh" #include "FbTk/MenuSeparator.hh" #include "FbTk/StringUtil.hh" #include "FbTk/I18n.hh"
M src/Toolbar.ccsrc/Toolbar.cc

@@ -32,7 +32,7 @@

// themes #include "ToolbarTheme.hh" -#include "FbTk/I18n.hh" +#include "fluxbox.hh" #include "Screen.hh" #include "IntResMenuItem.hh" #include "BoolMenuItem.hh"

@@ -45,6 +45,7 @@ #include "Strut.hh"

#include "CommandParser.hh" #include "Layer.hh" +#include "FbTk/I18n.hh" #include "FbTk/ImageControl.hh" #include "FbTk/MacroCommand.hh" #include "FbTk/EventManager.hh"

@@ -819,17 +820,17 @@ "Percentage of screen width taken by toolbar"),

m_rc_width_percent, 0, 100, menu()); // min/max value - + toolbar_menuitem->setCommand(reconfig_toolbar_and_save_resource); menu().insert(toolbar_menuitem); - + menu().insert(new BoolMenuItem(_FBTEXT(Common, MaximizeOver, "Maximize Over", "Maximize over this thing when maximizing"), *m_rc_maximize_over, reconfig_toolbar_and_save_resource)); menu().insert(_FBTEXT(Menu, Layer, "Layer...", "Title of Layer menu"), &layerMenu()); - +#ifdef XINERAMA if (screen().hasXinerama()) { menu().insert(_FBTEXT(Menu, OnHead, "On Head...", "Title of On Head menu"), new XineramaHeadMenu<Toolbar>(screen().menuTheme(),

@@ -840,6 +841,7 @@ *this,

_FBTEXT(Toolbar, OnHead, "Toolbar on Head", "Title of toolbar on head menu"))); } +#endif // XINERAMA typedef pair<const char*, Toolbar::Placement> PlacementP; typedef list<PlacementP> Placements;