diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2012-12-13 18:23:55 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-12-13 21:49:59 +0100 |
commit | 68a7d2c412ddd3ead977af1d0a6bff31cf601248 (patch) | |
tree | 37a33f800da425385427af53e84ba663cded5681 /svx/source/table/tablerow.cxx | |
parent | 0ba0980b1c9d8901c5e864003bd1d4baad5c824c (diff) |
PCH for Library_svx and Library_svxcore
Diffstat (limited to 'svx/source/table/tablerow.cxx')
-rw-r--r-- | svx/source/table/tablerow.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/table/tablerow.cxx b/svx/source/table/tablerow.cxx index 7810acd5f7f2..07a84c00193a 100644 --- a/svx/source/table/tablerow.cxx +++ b/svx/source/table/tablerow.cxx @@ -319,15 +319,15 @@ Any SAL_CALL TableRow::getFastPropertyValue( sal_Int32 nHandle ) throw (UnknownP // ----------------------------------------------------------------------------- -rtl::Reference< ::comphelper::FastPropertySetInfo > TableRow::getStaticPropertySetInfo() +rtl::Reference< FastPropertySetInfo > TableRow::getStaticPropertySetInfo() { - static rtl::Reference< ::comphelper::FastPropertySetInfo > xInfo; + static rtl::Reference< FastPropertySetInfo > xInfo; if( !xInfo.is() ) { ::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() ); if( !xInfo.is() ) { - comphelper::PropertyVector aProperties(6); + PropertyVector aProperties(6); aProperties[0].Name = OUString( RTL_CONSTASCII_USTRINGPARAM( "Height" ) ); aProperties[0].Handle = Property_Height; @@ -359,7 +359,7 @@ rtl::Reference< ::comphelper::FastPropertySetInfo > TableRow::getStaticPropertyS aProperties[5].Type = ::getBooleanCppuType(); aProperties[5].Attributes = 0; - xInfo.set( new ::comphelper::FastPropertySetInfo(aProperties) ); + xInfo.set( new FastPropertySetInfo(aProperties) ); } } |