summaryrefslogtreecommitdiff
path: root/src/Screen.hh
diff options
context:
space:
mode:
authormarkt <markt>2007-03-31 22:00:39 (GMT)
committermarkt <markt>2007-03-31 22:00:39 (GMT)
commit2519e2614d262ecf7b0c0dd96a521174ee86eb08 (patch)
treef32465a94abbf7710d28df1abd3932521c853419 /src/Screen.hh
parent9b84090f4ad3dea4c07a4e174fa4b46a2386de82 (diff)
downloadfluxbox_lack-2519e2614d262ecf7b0c0dd96a521174ee86eb08.zip
fluxbox_lack-2519e2614d262ecf7b0c0dd96a521174ee86eb08.tar.bz2
fixed some compiling issues
Diffstat (limited to 'src/Screen.hh')
-rw-r--r--src/Screen.hh7
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