diff options
Diffstat (limited to 'src/Screen.hh')
-rw-r--r-- | src/Screen.hh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Screen.hh b/src/Screen.hh index a30ca40..9488f3c 100644 --- a/src/Screen.hh +++ b/src/Screen.hh | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Screen.hh,v 1.70 2003/02/22 15:10:43 rathnor Exp $ | 25 | // $Id: Screen.hh,v 1.71 2003/02/22 16:09:44 rathnor Exp $ |
26 | 26 | ||
27 | #ifndef SCREEN_HH | 27 | #ifndef SCREEN_HH |
28 | #define SCREEN_HH | 28 | #define SCREEN_HH |
@@ -87,7 +87,7 @@ public: | |||
87 | inline bool isSloppyWindowGrouping() const { return *resource.sloppy_window_grouping; } | 87 | inline bool isSloppyWindowGrouping() const { return *resource.sloppy_window_grouping; } |
88 | inline bool isWorkspaceWarping() const { return *resource.workspace_warping; } | 88 | inline bool isWorkspaceWarping() const { return *resource.workspace_warping; } |
89 | inline bool isDesktopWheeling() const { return *resource.desktop_wheeling; } | 89 | inline bool isDesktopWheeling() const { return *resource.desktop_wheeling; } |
90 | inline bool doAutoRaise() const { return resource.auto_raise; } | 90 | inline bool doAutoRaise() const { return *resource.auto_raise; } |
91 | inline bool doImageDither() const { return *resource.image_dither; } | 91 | inline bool doImageDither() const { return *resource.image_dither; } |
92 | inline bool doMaxOverSlit() const { return *resource.max_over_slit; } | 92 | inline bool doMaxOverSlit() const { return *resource.max_over_slit; } |
93 | inline bool doOpaqueMove() const { return *resource.opaque_move; } | 93 | inline bool doOpaqueMove() const { return *resource.opaque_move; } |
@@ -382,10 +382,10 @@ private: | |||
382 | sloppy_window_grouping, workspace_warping, | 382 | sloppy_window_grouping, workspace_warping, |
383 | desktop_wheeling, show_window_pos, | 383 | desktop_wheeling, show_window_pos, |
384 | focus_last, focus_new, | 384 | focus_last, focus_new, |
385 | antialias; | 385 | antialias, auto_raise; |
386 | Resource<std::string> rootcommand; | 386 | Resource<std::string> rootcommand; |
387 | Resource<Fluxbox::FocusModel> focus_model; | 387 | Resource<Fluxbox::FocusModel> focus_model; |
388 | bool auto_raise, ordered_dither; | 388 | bool ordered_dither; |
389 | Resource<int> workspaces, toolbar_width_percent, edge_snap_threshold, | 389 | Resource<int> workspaces, toolbar_width_percent, edge_snap_threshold, |
390 | tab_width, tab_height; | 390 | tab_width, tab_height; |
391 | Resource<Fluxbox::Layer> slit_layernum, toolbar_layernum; | 391 | Resource<Fluxbox::Layer> slit_layernum, toolbar_layernum; |