diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-08-14 20:11:07 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-08-15 09:04:30 +0200 |
commit | c77e30cbc0e7fb56593dac345291fd33998fbaf0 (patch) | |
tree | 2f8c5114f5176ea38ca2623b39734fbaf2784b99 /toolkit | |
parent | d72f68e91b595d1a8120f39b80483c3f06838099 (diff) |
replace ".get->" with "->"
Change-Id: I327a6fda1fe0170da33e06b735f09a39421c8a58
Reviewed-on: https://gerrit.libreoffice.org/77469
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/controls/controlmodelcontainerbase.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/toolkit/source/controls/controlmodelcontainerbase.cxx b/toolkit/source/controls/controlmodelcontainerbase.cxx index 147a1732885c..e08d8c24e3e8 100644 --- a/toolkit/source/controls/controlmodelcontainerbase.cxx +++ b/toolkit/source/controls/controlmodelcontainerbase.cxx @@ -543,19 +543,19 @@ void ControlModelContainerBase::insertByName( const OUString& aName, const Any& if ( xProps.is() ) { - Reference< beans::XPropertySetInfo > xPropInfo = xProps.get()->getPropertySetInfo(); + Reference< beans::XPropertySetInfo > xPropInfo = xProps->getPropertySetInfo(); const OUString& sImageSourceProperty = GetPropertyName( BASEPROPERTY_IMAGEURL ); - if ( xPropInfo.get()->hasPropertyByName( sImageSourceProperty ) && ImplHasProperty(BASEPROPERTY_DIALOGSOURCEURL) ) + if ( xPropInfo->hasPropertyByName( sImageSourceProperty ) && ImplHasProperty(BASEPROPERTY_DIALOGSOURCEURL) ) { - Any aUrl = xProps.get()->getPropertyValue( sImageSourceProperty ); + Any aUrl = xProps->getPropertyValue( sImageSourceProperty ); OUString absoluteUrl = getPhysicalLocation( getPropertyValue( GetPropertyName( BASEPROPERTY_DIALOGSOURCEURL ) ), aUrl ); aUrl <<= absoluteUrl; - xProps.get()->setPropertyValue( sImageSourceProperty , aUrl ); + xProps->setPropertyValue( sImageSourceProperty , aUrl ); } } } |