minor const fix
This commit is contained in:
parent
cd3062405f
commit
815e0cb09a
2 changed files with 4 additions and 4 deletions
|
@ -292,8 +292,8 @@ void BindKeyCmd::execute() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DeiconifyCmd::DeiconifyCmd(const Mode mode,
|
DeiconifyCmd::DeiconifyCmd(Mode mode,
|
||||||
const Destination dest) : m_mode(mode), m_dest(dest) { }
|
Destination dest) : m_mode(mode), m_dest(dest) { }
|
||||||
|
|
||||||
void DeiconifyCmd::execute() {
|
void DeiconifyCmd::execute() {
|
||||||
BScreen *screen = Fluxbox::instance()->mouseScreen();
|
BScreen *screen = Fluxbox::instance()->mouseScreen();
|
||||||
|
|
|
@ -160,8 +160,8 @@ public:
|
||||||
ORIGINQUIET /// deiconification on origin workspace, dont change ws
|
ORIGINQUIET /// deiconification on origin workspace, dont change ws
|
||||||
};
|
};
|
||||||
|
|
||||||
DeiconifyCmd(const Mode mode= LASTWORKSPACE,
|
DeiconifyCmd(Mode mode= LASTWORKSPACE,
|
||||||
const Destination dest= CURRENT);
|
Destination dest= CURRENT);
|
||||||
void execute();
|
void execute();
|
||||||
private:
|
private:
|
||||||
Mode m_mode;
|
Mode m_mode;
|
||||||
|
|
Loading…
Reference in a new issue