all repos — fluxbox @ 2519e2614d262ecf7b0c0dd96a521174ee86eb08

custom fork of the fluxbox windowmanager

fixed some compiling issues
markt markt
commit

2519e2614d262ecf7b0c0dd96a521174ee86eb08

parent

9b84090f4ad3dea4c07a4e174fa4b46a2386de82

3 files changed, 2 insertions(+), 9 deletions(-)

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

@@ -172,8 +172,6 @@ return false;

} void RootTheme::reconfigTheme() { - _FB_USES_NLS; - if (!m_background->loaded()) return;
M src/Screen.ccsrc/Screen.cc

@@ -2234,7 +2234,7 @@ #endif // XINERAMA

return 0; } -int BScreen::getHead(FbTk::FbWindow &win) const { +int BScreen::getHead(const FbTk::FbWindow &win) const { if (hasXinerama()) return getHead(win.x() + win.width()/2, win.y() + win.height()/2); else
M src/Screen.hhsrc/Screen.hh

@@ -149,9 +149,7 @@ inline FollowModel getUserFollowModel() const { return *resource.user_follow_model; }

inline const std::string &getScrollAction() const { return *resource.scroll_action; } inline const bool getScrollReverse() const { return *resource.scroll_reverse; } - inline const bool clientMenuUsePixmap() const { return *resource.clientmenu_use_pixmap; } inline const bool getDefaultInternalTabs() const { return *resource.default_internal_tabs; } - inline const bool getTabsUsePixmap() const { return *resource.tabs_use_pixmap; } inline const bool getMaxOverTabs() const { return *resource.max_over_tabs; } inline unsigned int getTabWidth() const { return *resource.tab_width; }

@@ -255,10 +253,9 @@ const ClientPattern *pat = 0);

/** * Cycles focus of windows * @param opts focus options - * @param pat specific pattern to match windows with * @param reverse the order of cycling */ - void cycleFocus(int opts = 0, const ClientPattern *pat = 0, bool reverse = false); + void cycleFocus(int opts = 0, bool reverse = false); /** * Creates an empty menu with specified label

@@ -582,8 +579,6 @@ FbTk::Resource<FbTk::GContext::JoinStyle> gc_join_style;

FbTk::Resource<FbTk::GContext::CapStyle> gc_cap_style; FbTk::Resource<std::string> scroll_action; FbTk::Resource<bool> scroll_reverse; - FbTk::Resource<bool> clientmenu_use_pixmap; - FbTk::Resource<bool> tabs_use_pixmap; FbTk::Resource<bool> max_over_tabs; FbTk::Resource<bool> default_internal_tabs;