aboutsummaryrefslogtreecommitdiff
path: root/src/Workspace.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2006-02-20 21:04:35 (GMT)
committerfluxgen <fluxgen>2006-02-20 21:04:35 (GMT)
commit369b4e1b92491aa57b0bf430b89bf732b80fa6a4 (patch)
tree2bf00a93ad1c195ef7d446e8989069f218a2cd47 /src/Workspace.cc
parent2566d84561ce9f5ecaf1adcce97eb578747034e3 (diff)
downloadfluxbox-369b4e1b92491aa57b0bf430b89bf732b80fa6a4.zip
fluxbox-369b4e1b92491aa57b0bf430b89bf732b80fa6a4.tar.bz2
moved class Layer from class Fluxbox and thus reduces some dependecies
Diffstat (limited to 'src/Workspace.cc')
-rw-r--r--src/Workspace.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Workspace.cc b/src/Workspace.cc
index 7d53381..b874391 100644
--- a/src/Workspace.cc
+++ b/src/Workspace.cc
@@ -26,7 +26,6 @@
26 26
27#include "Workspace.hh" 27#include "Workspace.hh"
28 28
29#include "fluxbox.hh"
30#include "Screen.hh" 29#include "Screen.hh"
31#include "Window.hh" 30#include "Window.hh"
32#include "WinClient.hh" 31#include "WinClient.hh"
@@ -34,6 +33,7 @@
34#include "WindowCmd.hh" 33#include "WindowCmd.hh"
35#include "FocusControl.hh" 34#include "FocusControl.hh"
36#include "PlacementStrategy.hh" 35#include "PlacementStrategy.hh"
36#include "Layer.hh"
37 37
38#include "FbTk/I18n.hh" 38#include "FbTk/I18n.hh"
39#include "FbTk/MenuItem.hh" 39#include "FbTk/MenuItem.hh"
@@ -136,7 +136,7 @@ Workspace::Workspace(BScreen &scrn, FbTk::MultLayers &layermanager,
136 m_screen(scrn), 136 m_screen(scrn),
137 m_lastfocus(0), 137 m_lastfocus(0),
138 m_clientmenu(scrn.menuTheme(), scrn.imageControl(), 138 m_clientmenu(scrn.menuTheme(), scrn.imageControl(),
139 *scrn.layerManager().getLayer(Fluxbox::instance()->getMenuLayer())), 139 *scrn.layerManager().getLayer(Layer::MENU)),
140 m_layermanager(layermanager), 140 m_layermanager(layermanager),
141 m_name(name), 141 m_name(name),
142 m_id(id) { 142 m_id(id) {