diff options
Diffstat (limited to 'src/ToolbarHandler.cc')
-rw-r--r-- | src/ToolbarHandler.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ToolbarHandler.cc b/src/ToolbarHandler.cc index 8a40bbe..f723818 100644 --- a/src/ToolbarHandler.cc +++ b/src/ToolbarHandler.cc | |||
@@ -20,7 +20,7 @@ | |||
20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
21 | // DEALINGS IN THE SOFTWARE. | 21 | // DEALINGS IN THE SOFTWARE. |
22 | 22 | ||
23 | // $Id: ToolbarHandler.cc,v 1.9 2003/05/11 13:36:11 fluxgen Exp $ | 23 | // $Id: ToolbarHandler.cc,v 1.10 2003/05/11 17:11:58 fluxgen Exp $ |
24 | 24 | ||
25 | /** | 25 | /** |
26 | * The ToolbarHandler class acts as a rough interface to the toolbar. | 26 | * The ToolbarHandler class acts as a rough interface to the toolbar. |
@@ -152,7 +152,7 @@ void ToolbarHandler::initForScreen(BScreen &screen) { | |||
152 | BScreen::Workspaces::const_iterator workspace_it = m_screen.getWorkspacesList().begin(); | 152 | BScreen::Workspaces::const_iterator workspace_it = m_screen.getWorkspacesList().begin(); |
153 | BScreen::Workspaces::const_iterator workspace_it_end = m_screen.getWorkspacesList().end(); | 153 | BScreen::Workspaces::const_iterator workspace_it_end = m_screen.getWorkspacesList().end(); |
154 | for (; workspace_it != workspace_it_end; ++workspace_it) { | 154 | for (; workspace_it != workspace_it_end; ++workspace_it) { |
155 | Workspace::Windows &wins = (*workspace_it)->getWindowList(); | 155 | Workspace::Windows &wins = (*workspace_it)->windowList(); |
156 | Workspace::Windows::iterator wit = wins.begin(); | 156 | Workspace::Windows::iterator wit = wins.begin(); |
157 | Workspace::Windows::iterator wit_end = wins.end(); | 157 | Workspace::Windows::iterator wit_end = wins.end(); |
158 | for (; wit != wit_end; ++wit) { | 158 | for (; wit != wit_end; ++wit) { |
@@ -180,7 +180,7 @@ void ToolbarHandler::initForScreen(BScreen &screen) { | |||
180 | break; | 180 | break; |
181 | case WORKSPACE: | 181 | case WORKSPACE: |
182 | { | 182 | { |
183 | Workspace::Windows &wins = m_screen.getCurrentWorkspace()->getWindowList(); | 183 | Workspace::Windows &wins = m_screen.getCurrentWorkspace()->windowList(); |
184 | Workspace::Windows::iterator wit = wins.begin(); | 184 | Workspace::Windows::iterator wit = wins.begin(); |
185 | Workspace::Windows::iterator wit_end = wins.end(); | 185 | Workspace::Windows::iterator wit_end = wins.end(); |
186 | for (; wit != wit_end; ++wit) { | 186 | for (; wit != wit_end; ++wit) { |