diff options
author | fluxgen <fluxgen> | 2005-04-30 10:29:06 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2005-04-30 10:29:06 (GMT) |
commit | 815e0cb09a4b4a704a30f72ab305f94515592f60 (patch) | |
tree | d7b6222e68c9d99fdfb21abf3b39dd80b2f2d7a0 /src | |
parent | cd3062405f5686573b51b01b2cb7174c61d01af7 (diff) | |
download | fluxbox-815e0cb09a4b4a704a30f72ab305f94515592f60.zip fluxbox-815e0cb09a4b4a704a30f72ab305f94515592f60.tar.bz2 |
minor const fix
Diffstat (limited to 'src')
-rw-r--r-- | src/FbCommands.cc | 4 | ||||
-rw-r--r-- | src/FbCommands.hh | 4 |
2 files changed, 4 insertions, 4 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 | ||
295 | DeiconifyCmd::DeiconifyCmd(const Mode mode, | 295 | DeiconifyCmd::DeiconifyCmd(Mode mode, |
296 | const Destination dest) : m_mode(mode), m_dest(dest) { } | 296 | Destination dest) : m_mode(mode), m_dest(dest) { } |
297 | 297 | ||
298 | void DeiconifyCmd::execute() { | 298 | void DeiconifyCmd::execute() { |
299 | BScreen *screen = Fluxbox::instance()->mouseScreen(); | 299 | BScreen *screen = Fluxbox::instance()->mouseScreen(); |
diff --git a/src/FbCommands.hh b/src/FbCommands.hh index c2c17f6..1f7200d 100644 --- a/src/FbCommands.hh +++ b/src/FbCommands.hh | |||
@@ -160,8 +160,8 @@ public: | |||
160 | ORIGINQUIET /// deiconification on origin workspace, dont change ws | 160 | ORIGINQUIET /// deiconification on origin workspace, dont change ws |
161 | }; | 161 | }; |
162 | 162 | ||
163 | DeiconifyCmd(const Mode mode= LASTWORKSPACE, | 163 | DeiconifyCmd(Mode mode= LASTWORKSPACE, |
164 | const Destination dest= CURRENT); | 164 | Destination dest= CURRENT); |
165 | void execute(); | 165 | void execute(); |
166 | private: | 166 | private: |
167 | Mode m_mode; | 167 | Mode m_mode; |