summaryrefslogtreecommitdiff
path: root/include/sfx2/sidebar/SidebarPanelBase.hxx
diff options
context:
space:
mode:
authorStefan Weiberg <stefan.weiberg@germandev.org>2014-09-02 17:38:00 +0000
committerThomas Arnhold <thomas@arnhold.org>2014-09-03 02:03:34 -0500
commit9fba10b5a5f1e56dde0cdc4859622fb40db1c13a (patch)
treeab5ec25b9ac4dd28b931af9677f6a3c7f72bc6d8 /include/sfx2/sidebar/SidebarPanelBase.hxx
parent81300228a4af0ad3988f5bfe670fd8c38ea07bf4 (diff)
Related fdo#82088: removing another bunch of alias
Change-Id: I6e2ab6d20723803aedb530b4d25aa79ec0edbb8f Reviewed-on: https://gerrit.libreoffice.org/11260 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'include/sfx2/sidebar/SidebarPanelBase.hxx')
-rw-r--r--include/sfx2/sidebar/SidebarPanelBase.hxx42
1 files changed, 20 insertions, 22 deletions
diff --git a/include/sfx2/sidebar/SidebarPanelBase.hxx b/include/sfx2/sidebar/SidebarPanelBase.hxx
index eded1b333079..537c085280f4 100644
--- a/include/sfx2/sidebar/SidebarPanelBase.hxx
+++ b/include/sfx2/sidebar/SidebarPanelBase.hxx
@@ -34,8 +34,6 @@
#include <boost/noncopyable.hpp>
#include <boost/function.hpp>
-namespace cssu = ::com::sun::star::uno;
-
class Window;
@@ -60,57 +58,57 @@ class SFX2_DLLPUBLIC SidebarPanelBase
public SidebarPanelBaseInterfaceBase
{
public:
- static cssu::Reference<css::ui::XUIElement> Create (
+ static css::uno::Reference<css::ui::XUIElement> Create (
const ::rtl::OUString& rsResourceURL,
- const cssu::Reference<css::frame::XFrame>& rxFrame,
+ const css::uno::Reference<css::frame::XFrame>& rxFrame,
Window* pControl,
const css::ui::LayoutSize& rLayoutSize);
// XContextChangeEventListener
virtual void SAL_CALL notifyContextChangeEvent (
const css::ui::ContextChangeEventObject& rEvent)
- throw (cssu::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XEventListener
virtual void SAL_CALL disposing (
const css::lang::EventObject& rEvent)
- throw (cssu::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XUIElement
- virtual cssu::Reference<css::frame::XFrame> SAL_CALL getFrame (void)
- throw(cssu::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual css::uno::Reference<css::frame::XFrame> SAL_CALL getFrame (void)
+ throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual ::rtl::OUString SAL_CALL getResourceURL (void)
- throw(cssu::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Int16 SAL_CALL getType (void)
- throw(cssu::RuntimeException, std::exception) SAL_OVERRIDE;
- virtual cssu::Reference<cssu::XInterface> SAL_CALL getRealInterface (void)
- throw(cssu::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual css::uno::Reference<css::uno::XInterface> SAL_CALL getRealInterface (void)
+ throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XToolPanel
- virtual cssu::Reference<css::accessibility::XAccessible> SAL_CALL createAccessible (
- const cssu::Reference<css::accessibility::XAccessible>& rxParentAccessible)
- throw(cssu::RuntimeException, std::exception) SAL_OVERRIDE;
- virtual cssu::Reference<css::awt::XWindow> SAL_CALL getWindow (void)
- throw(cssu::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual css::uno::Reference<css::accessibility::XAccessible> SAL_CALL createAccessible (
+ const css::uno::Reference<css::accessibility::XAccessible>& rxParentAccessible)
+ throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual css::uno::Reference<css::awt::XWindow> SAL_CALL getWindow (void)
+ throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XSidebarPanel
virtual css::ui::LayoutSize SAL_CALL getHeightForWidth (sal_Int32 nWidth)
- throw(cssu::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Int32 SAL_CALL getMinimalWidth ()
- throw(cssu::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
protected:
- cssu::Reference<css::frame::XFrame> mxFrame;
+ css::uno::Reference<css::frame::XFrame> mxFrame;
SidebarPanelBase (
const ::rtl::OUString& rsResourceURL,
- const cssu::Reference<css::frame::XFrame>& rxFrame,
+ const css::uno::Reference<css::frame::XFrame>& rxFrame,
Window* pWindow,
const css::ui::LayoutSize& rLayoutSize);
virtual ~SidebarPanelBase (void);
virtual void SAL_CALL disposing (void)
- throw (cssu::RuntimeException) SAL_OVERRIDE;
+ throw (css::uno::RuntimeException) SAL_OVERRIDE;
private:
Window* mpControl;