summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@sun.com>2010-04-09 11:28:30 +0200
committerFrank Schoenheit [fs] <frank.schoenheit@sun.com>2010-04-09 11:28:30 +0200
commitcc7338c3b04fa71c33901f6ae6f0b8c865142e49 (patch)
tree1ec1601e5ffeb2713f46003296301c6f00206ca5 /sfx2
parent7c9c5e1d801b32d99d9ca2aa46b3071a9f497f2f (diff)
slidecopy: moved XToolPanel from css.view to css.ui, now that it is an XUIElement
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/dialog/taskpane.cxx4
-rw-r--r--sfx2/workben/custompanel/ctp_panel.hxx6
2 files changed, 5 insertions, 5 deletions
diff --git a/sfx2/source/dialog/taskpane.cxx b/sfx2/source/dialog/taskpane.cxx
index 02917079cf0e..289abf85c398 100644
--- a/sfx2/source/dialog/taskpane.cxx
+++ b/sfx2/source/dialog/taskpane.cxx
@@ -36,7 +36,7 @@
/** === begin UNO includes === **/
#include <com/sun/star/frame/XModuleManager.hpp>
#include <com/sun/star/container/XNameAccess.hpp>
-#include <com/sun/star/view/XToolPanel.hpp>
+#include <com/sun/star/ui/XToolPanel.hpp>
#include <com/sun/star/ui/XUIElementFactory.hpp>
#include <com/sun/star/awt/XWindowPeer.hpp>
#include <com/sun/star/awt/PosSize.hpp>
@@ -78,7 +78,7 @@ namespace sfx2
using ::com::sun::star::uno::Type;
using ::com::sun::star::frame::XModuleManager;
using ::com::sun::star::container::XNameAccess;
- using ::com::sun::star::view::XToolPanel;
+ using ::com::sun::star::ui::XToolPanel;
using ::com::sun::star::ui::XUIElementFactory;
using ::com::sun::star::ui::XUIElement;
using ::com::sun::star::awt::XWindow;
diff --git a/sfx2/workben/custompanel/ctp_panel.hxx b/sfx2/workben/custompanel/ctp_panel.hxx
index 57a1a91eaf3e..39c46c9d93a5 100644
--- a/sfx2/workben/custompanel/ctp_panel.hxx
+++ b/sfx2/workben/custompanel/ctp_panel.hxx
@@ -28,7 +28,7 @@
#define SD_WORKBENCH_CTP_PANEL_HXX
/** === begin UNO includes === **/
-#include <com/sun/star/view/XToolPanel.hpp>
+#include <com/sun/star/ui/XToolPanel.hpp>
#include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/awt/XPaintListener.hpp>
#include <com/sun/star/awt/XWindow.hpp>
@@ -49,7 +49,7 @@ namespace sd { namespace colortoolpanel
//==================================================================================================================
//= SingleColorPanel
//==================================================================================================================
- typedef ::cppu::WeakComponentImplHelper2 < ::com::sun::star::view::XToolPanel
+ typedef ::cppu::WeakComponentImplHelper2 < ::com::sun::star::ui::XToolPanel
, ::com::sun::star::awt::XPaintListener
> SingleColorPanel_Base;
class SingleColorPanel :public ::cppu::BaseMutex
@@ -113,7 +113,7 @@ namespace sd { namespace colortoolpanel
private:
const ::rtl::OUString m_sResourceURL;
- ::com::sun::star::uno::Reference< ::com::sun::star::view::XToolPanel >
+ ::com::sun::star::uno::Reference< ::com::sun::star::ui::XToolPanel >
m_xToolPanel;
};