]> Dogcows Code - chaz/openbox/commitdiff
fix compliling with --disable-slit
authorDana Jansens <danakj@orodu.net>
Thu, 23 May 2002 15:00:15 +0000 (15:00 +0000)
committerDana Jansens <danakj@orodu.net>
Thu, 23 May 2002 15:00:15 +0000 (15:00 +0000)
CHANGELOG
src/Screen.cc

index 4581419d1361e3c4397fcd1ceb9607bcaf66f7ac..27089ebb2306f4a3cf2f08fd419b1b41998bac1e 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,8 @@
 Changelog for Openbox:
 
 2.0.0:
+ * fix compliling with --disable-slit.                  (Ben Jansens)
+
  * fixed sticky windows behavior.                       (Ben Jansens)
 
  * make reconfigure reset the timeout values for
index 08b76971b267fed91dffc00f7d60b32f05fb5fc6..2225e2cee73a4dd92c19611dfa23aa043c0509d5 100644 (file)
@@ -653,7 +653,7 @@ Rect BScreen::availableArea() const {
       space.setH(space.h() - tbarh);
     }
 #else // !SLIT
-    int tbarh = resource.hide_toolbar() ? 0 :
+    int tbarh = resource.hide_toolbar ? 0 :
       toolbar->getExposedHeight() + resource.border_width * 2;
     switch (toolbar->placement()) {
     case Toolbar::TopLeft:
This page took 0.02926 seconds and 4 git commands to generate.