summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdlayer.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-30 14:59:47 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-10-31 12:56:21 +0000
commit4530451d40470bf5359645de0c142ddf9dc329b6 (patch)
tree8b57614e9316685a8178d9d61795932c3e705d45 /svx/source/svdraw/svdlayer.cxx
parentbd332c2a335b34e209fe2b7fdfb669c855325636 (diff)
com::sun::star->css in svx
Change-Id: If2c11fa548c5ebef2297d2491edd837b54e3707c Reviewed-on: https://gerrit.libreoffice.org/19690 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svx/source/svdraw/svdlayer.cxx')
-rw-r--r--svx/source/svdraw/svdlayer.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/svdraw/svdlayer.cxx b/svx/source/svdraw/svdlayer.cxx
index 57a944fd3350..53bddf9c4e8a 100644
--- a/svx/source/svdraw/svdlayer.cxx
+++ b/svx/source/svdraw/svdlayer.cxx
@@ -53,9 +53,9 @@ void SetOfByte::operator|=(const SetOfByte& r2ndSet)
/** initialize this set with a uno sequence of sal_Int8
*/
-void SetOfByte::PutValue( const com::sun::star::uno::Any & rAny )
+void SetOfByte::PutValue( const css::uno::Any & rAny )
{
- com::sun::star::uno::Sequence< sal_Int8 > aSeq;
+ css::uno::Sequence< sal_Int8 > aSeq;
if( rAny >>= aSeq )
{
sal_Int16 nCount = (sal_Int16)aSeq.getLength();
@@ -77,7 +77,7 @@ void SetOfByte::PutValue( const com::sun::star::uno::Any & rAny )
/** returns a uno sequence of sal_Int8
*/
-void SetOfByte::QueryValue( com::sun::star::uno::Any & rAny ) const
+void SetOfByte::QueryValue( css::uno::Any & rAny ) const
{
sal_Int16 nNumBytesSet = 0;
sal_Int16 nIndex;
@@ -90,7 +90,7 @@ void SetOfByte::QueryValue( com::sun::star::uno::Any & rAny ) const
}
}
- com::sun::star::uno::Sequence< sal_Int8 > aSeq( nNumBytesSet );
+ css::uno::Sequence< sal_Int8 > aSeq( nNumBytesSet );
for( nIndex = 0; nIndex < nNumBytesSet; nIndex++ )
{