aboutsummaryrefslogtreecommitdiff
path: root/src/ToolbarHandler.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-05-11 13:36:12 (GMT)
committerfluxgen <fluxgen>2003-05-11 13:36:12 (GMT)
commitaa72e23c8e1f6decf0bb78f8bd909e3e67b3a9da (patch)
tree9e8f1c81637c6e000127ed32f794e166eb4ac6a3 /src/ToolbarHandler.cc
parent816190411a9e5bd6cdfaa9d579f84be348a2f1bc (diff)
downloadfluxbox-aa72e23c8e1f6decf0bb78f8bd909e3e67b3a9da.zip
fluxbox-aa72e23c8e1f6decf0bb78f8bd909e3e67b3a9da.tar.bz2
minor cleaning
Diffstat (limited to 'src/ToolbarHandler.cc')
-rw-r--r--src/ToolbarHandler.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ToolbarHandler.cc b/src/ToolbarHandler.cc
index bc21772..8a40bbe 100644
--- a/src/ToolbarHandler.cc
+++ b/src/ToolbarHandler.cc
@@ -20,7 +20,7 @@
20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21// DEALINGS IN THE SOFTWARE. 21// DEALINGS IN THE SOFTWARE.
22 22
23// $Id: ToolbarHandler.cc,v 1.8 2003/04/16 23:33:59 rathnor Exp $ 23// $Id: ToolbarHandler.cc,v 1.9 2003/05/11 13:36:11 fluxgen Exp $
24 24
25/** 25/**
26 * The ToolbarHandler class acts as a rough interface to the toolbar. 26 * The ToolbarHandler class acts as a rough interface to the toolbar.
@@ -205,7 +205,7 @@ void ToolbarHandler::initForScreen(BScreen &screen) {
205} 205}
206 206
207void ToolbarHandler::setupWindow(FluxboxWindow &win) { 207void ToolbarHandler::setupWindow(FluxboxWindow &win) {
208 if (&win.getScreen() != &m_screen) 208 if (&win.screen() != &m_screen)
209 return; 209 return;
210 210
211 switch (m_mode) { 211 switch (m_mode) {
@@ -233,7 +233,7 @@ void ToolbarHandler::setupWindow(FluxboxWindow &win) {
233} 233}
234 234
235void ToolbarHandler::updateWindowClose(FluxboxWindow &win) { 235void ToolbarHandler::updateWindowClose(FluxboxWindow &win) {
236 if (&win.getScreen() != &m_screen) 236 if (&win.screen() != &m_screen)
237 return; 237 return;
238 238
239 // check status of window (in current workspace, etc) and remove if necessary 239 // check status of window (in current workspace, etc) and remove if necessary
@@ -262,7 +262,7 @@ void ToolbarHandler::updateWindowClose(FluxboxWindow &win) {
262} 262}
263 263
264void ToolbarHandler::updateState(FluxboxWindow &win) { 264void ToolbarHandler::updateState(FluxboxWindow &win) {
265 if (&win.getScreen() != &m_screen) 265 if (&win.screen() != &m_screen)
266 return; 266 return;
267 267
268 // this function only relevant for icons 268 // this function only relevant for icons
@@ -292,7 +292,7 @@ void ToolbarHandler::updateState(FluxboxWindow &win) {
292 292
293 293
294void ToolbarHandler::updateWorkspace(FluxboxWindow &win) { 294void ToolbarHandler::updateWorkspace(FluxboxWindow &win) {
295 if (&win.getScreen() != &m_screen) 295 if (&win.screen() != &m_screen)
296 return; 296 return;
297 297
298 // don't care about current workspace except if in workspace mode 298 // don't care about current workspace except if in workspace mode