summaryrefslogtreecommitdiff
path: root/framework/inc/uielement/uielement.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-13 16:59:57 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-10-14 06:37:16 +0000
commitd191d1f9b684c6229f3651361c92ff39ffb350f1 (patch)
treee670ba0105d974b3a68c17b42366eec1d35ebae4 /framework/inc/uielement/uielement.hxx
parentba974ccc8c49766542ddd727c95ecc5db1cff198 (diff)
com::sun::star->css in framework
Change-Id: If5a77db83fcbef5ed436f2043ddeb7c515a840dc Reviewed-on: https://gerrit.libreoffice.org/19356 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'framework/inc/uielement/uielement.hxx')
-rw-r--r--framework/inc/uielement/uielement.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/framework/inc/uielement/uielement.hxx b/framework/inc/uielement/uielement.hxx
index bbec95ab92ba..105c386b9232 100644
--- a/framework/inc/uielement/uielement.hxx
+++ b/framework/inc/uielement/uielement.hxx
@@ -34,11 +34,11 @@ namespace framework
struct DockedData
{
DockedData() : m_aPos( SAL_MAX_INT32, SAL_MAX_INT32 ),
- m_nDockedArea( ::com::sun::star::ui::DockingArea_DOCKINGAREA_TOP ),
+ m_nDockedArea( css::ui::DockingArea_DOCKINGAREA_TOP ),
m_bLocked( false ) {}
- com::sun::star::awt::Point m_aPos;
- com::sun::star::awt::Size m_aSize;
+ css::awt::Point m_aPos;
+ css::awt::Size m_aSize;
sal_Int16 m_nDockedArea;
bool m_bLocked;
};
@@ -49,10 +49,10 @@ struct FloatingData
m_nLines( 1 ),
m_bIsHorizontal( true ) {}
- com::sun::star::awt::Point m_aPos;
- com::sun::star::awt::Size m_aSize;
- sal_Int16 m_nLines;
- bool m_bIsHorizontal;
+ css::awt::Point m_aPos;
+ css::awt::Size m_aSize;
+ sal_Int16 m_nLines;
+ bool m_bIsHorizontal;
};
struct UIElement
@@ -73,7 +73,7 @@ struct UIElement
UIElement( const OUString& rName,
const OUString& rType,
- const com::sun::star::uno::Reference< ::com::sun::star::ui::XUIElement >& rUIElement,
+ const css::uno::Reference< css::ui::XUIElement >& rUIElement,
bool bFloating = false
) : m_aType( rType ),
m_aName( rName ),
@@ -97,7 +97,7 @@ struct UIElement
OUString m_aType;
OUString m_aName;
OUString m_aUIName;
- com::sun::star::uno::Reference< ::com::sun::star::ui::XUIElement > m_xUIElement;
+ css::uno::Reference< css::ui::XUIElement > m_xUIElement;
bool m_bFloating,
m_bVisible,
m_bUserActive,