diff options
-rw-r--r-- | sd/source/ui/func/fuconbez.cxx | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/sd/source/ui/func/fuconbez.cxx b/sd/source/ui/func/fuconbez.cxx index 507bf37ab6c6..885880a01e56 100644 --- a/sd/source/ui/func/fuconbez.cxx +++ b/sd/source/ui/func/fuconbez.cxx @@ -4,9 +4,9 @@ * * $RCSfile: fuconbez.cxx,v $ * - * $Revision: 1.12 $ + * $Revision: 1.13 $ * - * last change: $Author: rt $ $Date: 2005-12-14 16:55:45 $ + * last change: $Author: obo $ $Date: 2006-03-21 17:16:09 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -72,14 +72,17 @@ #ifndef SD_VIEW_SHELL_HXX #include "ViewShell.hxx" #endif +#ifndef SD_VIEW_SHELL_BASE_HXX +#include "ViewShellBase.hxx" +#endif #ifndef SD_VIEW_HXX #include "View.hxx" #endif #ifndef SD_WINDOW_HXX #include "Window.hxx" #endif -#ifndef SD_OBJECT_BAR_MANAGER_HXX -#include "ObjectBarManager.hxx" +#ifndef SD_TOOL_BAR_MANAGER_HXX +#include "ToolBarManager.hxx" #endif #include "drawdoc.hxx" #include "res_bmp.hrc" @@ -340,7 +343,9 @@ void FuConstructBezierPolygon::SelectionHasChanged() { FuDraw::SelectionHasChanged(); - pViewShell->GetObjectBarManager().SelectionHasChanged(pView); + pViewShell->GetViewShellBase().GetToolBarManager().SelectionHasChanged( + *pViewShell, + *pView); } |