diff --git a/src/FbCommands.cc b/src/FbCommands.cc index 1dbbd66c..0c62f392 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 c2c17f61..1f7200d8 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;