diff options
Diffstat (limited to 'src/Workspace.cc')
-rw-r--r-- | src/Workspace.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Workspace.cc b/src/Workspace.cc index aa9ac7e..e1854c6 100644 --- a/src/Workspace.cc +++ b/src/Workspace.cc | |||
@@ -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: Workspace.cc,v 1.21 2002/06/02 22:57:52 fluxgen Exp $ | 25 | // $Id: Workspace.cc,v 1.22 2002/08/04 15:37:37 fluxgen Exp $ |
26 | 26 | ||
27 | // use GNU extensions | 27 | // use GNU extensions |
28 | #ifndef _GNU_SOURCE | 28 | #ifndef _GNU_SOURCE |
@@ -390,10 +390,10 @@ void Workspace::placeWindow(FluxboxWindow *win) { | |||
390 | Bool placed = False; | 390 | Bool placed = False; |
391 | int borderWidth4x = screen->getBorderWidth2x() * 2, | 391 | int borderWidth4x = screen->getBorderWidth2x() * 2, |
392 | #ifdef SLIT | 392 | #ifdef SLIT |
393 | slit_x = screen->getSlit()->getX() - screen->getBorderWidth(), | 393 | slit_x = screen->getSlit()->x() - screen->getBorderWidth(), |
394 | slit_y = screen->getSlit()->getY() - screen->getBorderWidth(), | 394 | slit_y = screen->getSlit()->y() - screen->getBorderWidth(), |
395 | slit_w = screen->getSlit()->getWidth() + borderWidth4x, | 395 | slit_w = screen->getSlit()->width() + borderWidth4x, |
396 | slit_h = screen->getSlit()->getHeight() + borderWidth4x, | 396 | slit_h = screen->getSlit()->height() + borderWidth4x, |
397 | #endif // SLIT | 397 | #endif // SLIT |
398 | toolbar_x = screen->getToolbar()->getX() - screen->getBorderWidth(), | 398 | toolbar_x = screen->getToolbar()->getX() - screen->getBorderWidth(), |
399 | toolbar_y = screen->getToolbar()->getY() - screen->getBorderWidth(), | 399 | toolbar_y = screen->getToolbar()->getY() - screen->getBorderWidth(), |