summaryrefslogtreecommitdiff
path: root/svx/source/sdr/contact
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/sdr/contact')
-rw-r--r--svx/source/sdr/contact/viewcontactofsdrmediaobj.cxx2
-rw-r--r--svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx8
2 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/sdr/contact/viewcontactofsdrmediaobj.cxx b/svx/source/sdr/contact/viewcontactofsdrmediaobj.cxx
index 4d1dcfdb2fe2..8aa9abe90288 100644
--- a/svx/source/sdr/contact/viewcontactofsdrmediaobj.cxx
+++ b/svx/source/sdr/contact/viewcontactofsdrmediaobj.cxx
@@ -142,7 +142,7 @@ namespace sdr
// decomposition of MediaPrimitive2D to create needed invisible elements for HitTest
// and/or BoundRect
const basegfx::BColor aBackgroundColor(67.0 / 255.0, 67.0 / 255.0, 67.0 / 255.0);
- const rtl::OUString& rURL(GetSdrMediaObj().getURL());
+ const OUString& rURL(GetSdrMediaObj().getURL());
const sal_uInt32 nPixelBorder(4L);
const drawinglayer::primitive2d::Primitive2DReference xRetval(
new drawinglayer::primitive2d::MediaPrimitive2D(
diff --git a/svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx b/svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx
index ef8a8a2b33ad..6ee13eff2d74 100644
--- a/svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx
+++ b/svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx
@@ -1203,7 +1203,7 @@ namespace sdr { namespace contact {
bool bSuccess = false;
try
{
- const ::rtl::OUString sControlServiceName( _rUnoObject.GetUnoControlTypeName() );
+ const OUString sControlServiceName( _rUnoObject.GetUnoControlTypeName() );
Reference< XMultiServiceFactory > xFactory( ::comphelper::getProcessServiceFactory(), UNO_SET_THROW );
_out_rControl = Reference< XControl >( xFactory->createInstance( sControlServiceName ), UNO_QUERY_THROW );
@@ -1382,9 +1382,9 @@ namespace sdr { namespace contact {
{
Reference< XPropertySet > xModelProperties( m_aControl.getModel(), UNO_QUERY_THROW );
if ( _bStart )
- xModelProperties->addPropertyChangeListener( ::rtl::OUString(), this );
+ xModelProperties->addPropertyChangeListener( OUString(), this );
else
- xModelProperties->removePropertyChangeListener( ::rtl::OUString(), this );
+ xModelProperties->removePropertyChangeListener( OUString(), this );
}
catch( const Exception& )
{
@@ -1403,7 +1403,7 @@ namespace sdr { namespace contact {
try
{
Reference< XPropertySet > xModelProperties( pUnoObject->GetUnoControlModel(), UNO_QUERY_THROW );
- static const ::rtl::OUString s_sPrintablePropertyName( "Printable" );
+ static const OUString s_sPrintablePropertyName( "Printable" );
OSL_VERIFY( xModelProperties->getPropertyValue( s_sPrintablePropertyName ) >>= bIsPrintable );
}
catch( const Exception& )