diff options
author | markt <markt> | 2006-07-02 04:24:12 (GMT) |
---|---|---|
committer | markt <markt> | 2006-07-02 04:24:12 (GMT) |
commit | 4c12086c1c126347f92c247901fb0ab3231d237c (patch) | |
tree | d8f8aa562d27a9661bd53a1909d1d106ac81bd71 /src | |
parent | c18985732b09da5f09189e91a145cb33e656688d (diff) | |
download | fluxbox_pavel-4c12086c1c126347f92c247901fb0ab3231d237c.zip fluxbox_pavel-4c12086c1c126347f92c247901fb0ab3231d237c.tar.bz2 |
updated documentation and another dead function
Diffstat (limited to 'src')
-rw-r--r-- | src/Screen.cc | 2 | ||||
-rw-r--r-- | src/Screen.hh | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/src/Screen.cc b/src/Screen.cc index 7523f8a..384ae86 100644 --- a/src/Screen.cc +++ b/src/Screen.cc | |||
@@ -250,8 +250,6 @@ BScreen::ScreenResource::ScreenResource(FbTk::ResourceManager &rm, | |||
250 | image_dither(rm, false, scrname+".imageDither", altscrname+".ImageDither"), | 250 | image_dither(rm, false, scrname+".imageDither", altscrname+".ImageDither"), |
251 | opaque_move(rm, false, scrname + ".opaqueMove", altscrname+".OpaqueMove"), | 251 | opaque_move(rm, false, scrname + ".opaqueMove", altscrname+".OpaqueMove"), |
252 | full_max(rm, true, scrname+".fullMaximization", altscrname+".FullMaximization"), | 252 | full_max(rm, true, scrname+".fullMaximization", altscrname+".FullMaximization"), |
253 | sloppy_window_grouping(rm, true, | ||
254 | scrname+".sloppywindowgrouping", altscrname+".SloppyWindowGrouping"), | ||
255 | workspace_warping(rm, true, scrname+".workspacewarping", altscrname+".WorkspaceWarping"), | 253 | workspace_warping(rm, true, scrname+".workspacewarping", altscrname+".WorkspaceWarping"), |
256 | desktop_wheeling(rm, true, scrname+".desktopwheeling", altscrname+".DesktopWheeling"), | 254 | desktop_wheeling(rm, true, scrname+".desktopwheeling", altscrname+".DesktopWheeling"), |
257 | reverse_wheeling(rm, false, scrname+".reversewheeling", altscrname+".ReverseWheeling"), | 255 | reverse_wheeling(rm, false, scrname+".reversewheeling", altscrname+".ReverseWheeling"), |
diff --git a/src/Screen.hh b/src/Screen.hh index 430ba96..46f50da 100644 --- a/src/Screen.hh +++ b/src/Screen.hh | |||
@@ -110,7 +110,6 @@ public: | |||
110 | 110 | ||
111 | bool isRootColormapInstalled() const { return root_colormap_installed; } | 111 | bool isRootColormapInstalled() const { return root_colormap_installed; } |
112 | bool isScreenManaged() const { return managed; } | 112 | bool isScreenManaged() const { return managed; } |
113 | bool isSloppyWindowGrouping() const { return *resource.sloppy_window_grouping; } | ||
114 | bool isWorkspaceWarping() const { return *resource.workspace_warping; } | 113 | bool isWorkspaceWarping() const { return *resource.workspace_warping; } |
115 | bool isDesktopWheeling() const { return *resource.desktop_wheeling; } | 114 | bool isDesktopWheeling() const { return *resource.desktop_wheeling; } |
116 | bool isReverseWheeling() const { return *resource.reverse_wheeling; } | 115 | bool isReverseWheeling() const { return *resource.reverse_wheeling; } |
@@ -435,7 +434,7 @@ private: | |||
435 | const std::string &altscrname); | 434 | const std::string &altscrname); |
436 | 435 | ||
437 | FbTk::Resource<bool> image_dither, opaque_move, full_max, | 436 | FbTk::Resource<bool> image_dither, opaque_move, full_max, |
438 | sloppy_window_grouping, workspace_warping, | 437 | workspace_warping, |
439 | desktop_wheeling, reverse_wheeling, show_window_pos, | 438 | desktop_wheeling, reverse_wheeling, show_window_pos, |
440 | antialias, auto_raise, click_raises, decorate_transient; | 439 | antialias, auto_raise, click_raises, decorate_transient; |
441 | FbTk::Resource<std::string> rootcommand; | 440 | FbTk::Resource<std::string> rootcommand; |