all repos — fluxbox @ a21572f1b1b8d58cd5d7bb0117924b9f3879fb9a

custom fork of the fluxbox windowmanager

remove some unnecessary uses of FluxboxWindow::deiconify
Mark Tiefenbruck mark@fluxbox.org
commit

a21572f1b1b8d58cd5d7bb0117924b9f3879fb9a

parent

a8ec9d97b918325e78469bb63c01781a0feef0e7

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

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

@@ -1789,7 +1789,7 @@

void FluxboxWindow::raise() { if (isIconic()) - deiconify(); + return;; #ifdef DEBUG cerr<<"FluxboxWindow("<<title()<<")::raise()[layer="<<layerNum()<<"]"<<endl; #endif // DEBUG

@@ -1817,7 +1817,7 @@ }

void FluxboxWindow::lower() { if (isIconic()) - deiconify(); + return; #ifdef DEBUG cerr<<"FluxboxWindow("<<title()<<")::lower()"<<endl; #endif // DEBUG
M src/Workspace.ccsrc/Workspace.cc

@@ -119,7 +119,7 @@ void Workspace::showAll() {

Windows::iterator it = m_windowlist.begin(); Windows::iterator it_end = m_windowlist.end(); for (; it != it_end; ++it) - (*it)->deiconify(false, false); + (*it)->show(); }