From 815e0cb09a4b4a704a30f72ab305f94515592f60 Mon Sep 17 00:00:00 2001 From: fluxgen Date: Sat, 30 Apr 2005 10:29:06 +0000 Subject: minor const fix --- src/FbCommands.cc | 4 ++-- 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() { } } -DeiconifyCmd::DeiconifyCmd(const Mode mode, - const Destination dest) : m_mode(mode), m_dest(dest) { } +DeiconifyCmd::DeiconifyCmd(Mode mode, + Destination dest) : m_mode(mode), m_dest(dest) { } void DeiconifyCmd::execute() { 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: ORIGINQUIET /// deiconification on origin workspace, dont change ws }; - DeiconifyCmd(const Mode mode= LASTWORKSPACE, - const Destination dest= CURRENT); + DeiconifyCmd(Mode mode= LASTWORKSPACE, + Destination dest= CURRENT); void execute(); private: Mode m_mode; -- cgit v0.11.2