summaryrefslogtreecommitdiff
path: root/src/FbCommands.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2005-04-30 10:29:06 (GMT)
committerfluxgen <fluxgen>2005-04-30 10:29:06 (GMT)
commit815e0cb09a4b4a704a30f72ab305f94515592f60 (patch)
treed7b6222e68c9d99fdfb21abf3b39dd80b2f2d7a0 /src/FbCommands.cc
parentcd3062405f5686573b51b01b2cb7174c61d01af7 (diff)
downloadfluxbox_lack-815e0cb09a4b4a704a30f72ab305f94515592f60.zip
fluxbox_lack-815e0cb09a4b4a704a30f72ab305f94515592f60.tar.bz2
minor const fix
Diffstat (limited to 'src/FbCommands.cc')
-rw-r--r--src/FbCommands.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FbCommands.cc b/src/FbCommands.cc
index 1dbbd66..0c62f39 100644
--- a/src/FbCommands.cc
+++ b/src/FbCommands.cc
@@ -292,8 +292,8 @@ void BindKeyCmd::execute() {
292 } 292 }
293} 293}
294 294
295DeiconifyCmd::DeiconifyCmd(const Mode mode, 295DeiconifyCmd::DeiconifyCmd(Mode mode,
296 const Destination dest) : m_mode(mode), m_dest(dest) { } 296 Destination dest) : m_mode(mode), m_dest(dest) { }
297 297
298void DeiconifyCmd::execute() { 298void DeiconifyCmd::execute() {
299 BScreen *screen = Fluxbox::instance()->mouseScreen(); 299 BScreen *screen = Fluxbox::instance()->mouseScreen();