diff options
Diffstat (limited to 'src/Screen.hh')
-rw-r--r-- | src/Screen.hh | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/Screen.hh b/src/Screen.hh index ab6ce7d..7409abd 100644 --- a/src/Screen.hh +++ b/src/Screen.hh | |||
@@ -149,9 +149,7 @@ public: | |||
149 | 149 | ||
150 | inline const std::string &getScrollAction() const { return *resource.scroll_action; } | 150 | inline const std::string &getScrollAction() const { return *resource.scroll_action; } |
151 | inline const bool getScrollReverse() const { return *resource.scroll_reverse; } | 151 | inline const bool getScrollReverse() const { return *resource.scroll_reverse; } |
152 | inline const bool clientMenuUsePixmap() const { return *resource.clientmenu_use_pixmap; } | ||
153 | inline const bool getDefaultInternalTabs() const { return *resource.default_internal_tabs; } | 152 | inline const bool getDefaultInternalTabs() const { return *resource.default_internal_tabs; } |
154 | inline const bool getTabsUsePixmap() const { return *resource.tabs_use_pixmap; } | ||
155 | inline const bool getMaxOverTabs() const { return *resource.max_over_tabs; } | 153 | inline const bool getMaxOverTabs() const { return *resource.max_over_tabs; } |
156 | 154 | ||
157 | inline unsigned int getTabWidth() const { return *resource.tab_width; } | 155 | inline unsigned int getTabWidth() const { return *resource.tab_width; } |
@@ -255,10 +253,9 @@ public: | |||
255 | /** | 253 | /** |
256 | * Cycles focus of windows | 254 | * Cycles focus of windows |
257 | * @param opts focus options | 255 | * @param opts focus options |
258 | * @param pat specific pattern to match windows with | ||
259 | * @param reverse the order of cycling | 256 | * @param reverse the order of cycling |
260 | */ | 257 | */ |
261 | void cycleFocus(int opts = 0, const ClientPattern *pat = 0, bool reverse = false); | 258 | void cycleFocus(int opts = 0, bool reverse = false); |
262 | 259 | ||
263 | /** | 260 | /** |
264 | * Creates an empty menu with specified label | 261 | * Creates an empty menu with specified label |
@@ -582,8 +579,6 @@ private: | |||
582 | FbTk::Resource<FbTk::GContext::CapStyle> gc_cap_style; | 579 | FbTk::Resource<FbTk::GContext::CapStyle> gc_cap_style; |
583 | FbTk::Resource<std::string> scroll_action; | 580 | FbTk::Resource<std::string> scroll_action; |
584 | FbTk::Resource<bool> scroll_reverse; | 581 | FbTk::Resource<bool> scroll_reverse; |
585 | FbTk::Resource<bool> clientmenu_use_pixmap; | ||
586 | FbTk::Resource<bool> tabs_use_pixmap; | ||
587 | FbTk::Resource<bool> max_over_tabs; | 582 | FbTk::Resource<bool> max_over_tabs; |
588 | FbTk::Resource<bool> default_internal_tabs; | 583 | FbTk::Resource<bool> default_internal_tabs; |
589 | 584 | ||