remove some unnecessary uses of FluxboxWindow::deiconify

This commit is contained in:
Mark Tiefenbruck 2007-12-18 22:38:01 -08:00
parent a8ec9d97b9
commit a21572f1b1
2 changed files with 3 additions and 3 deletions

View file

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

View file

@ -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();
}