all repos — fluxbox @ 815e0cb09a4b4a704a30f72ab305f94515592f60

custom fork of the fluxbox windowmanager

minor const fix
fluxgen fluxgen
commit

815e0cb09a4b4a704a30f72ab305f94515592f60

parent

cd3062405f5686573b51b01b2cb7174c61d01af7

2 files changed, 4 insertions(+), 4 deletions(-)

jump to
M src/FbCommands.ccsrc/FbCommands.cc

@@ -292,8 +292,8 @@ }

} } -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();
M src/FbCommands.hhsrc/FbCommands.hh

@@ -160,8 +160,8 @@ ORIGIN, /// deiconification on origin workspace, change to that ws

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;