X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2FWorkspace.cc;h=60efba1e3845badb92d84e937b1b09f8346ce3ac;hb=be2f47223c17c399e05436a34ba4140f2fc44fc9;hp=2aaf80eeb35f9a54b0b0260a47e97abe1909557a;hpb=351a06655bdd7d440780b5bc5b255081c888044b;p=chaz%2Fopenbox diff --git a/src/Workspace.cc b/src/Workspace.cc index 2aaf80ee..60efba1e 100644 --- a/src/Workspace.cc +++ b/src/Workspace.cc @@ -320,6 +320,12 @@ void Workspace::reconfigure(void) { } +void Workspace::updateFocusModel(void) { + std::for_each(windowList.begin(), windowList.end(), + std::mem_fun(&BlackboxWindow::updateFocusModel)); +} + + BlackboxWindow *Workspace::getWindow(unsigned int index) { if (index < windowList.size()) { BlackboxWindowList::iterator it = windowList.begin();