diff options
Diffstat (limited to 'svx/source/inc')
-rw-r--r-- | svx/source/inc/charmapacc.hxx | 4 | ||||
-rw-r--r-- | svx/source/inc/datanavi.hxx | 8 | ||||
-rw-r--r-- | svx/source/inc/formcontroller.hxx | 2 | ||||
-rw-r--r-- | svx/source/inc/svxpixelctlaccessiblecontext.hxx | 2 | ||||
-rw-r--r-- | svx/source/inc/svxrectctaccessiblecontext.hxx | 2 |
5 files changed, 9 insertions, 9 deletions
diff --git a/svx/source/inc/charmapacc.hxx b/svx/source/inc/charmapacc.hxx index 2169e9688452..02260bd3c1a2 100644 --- a/svx/source/inc/charmapacc.hxx +++ b/svx/source/inc/charmapacc.hxx @@ -108,8 +108,8 @@ namespace svx SvxShowCharSetItem( SvxShowCharSet& rParent,SvxShowCharSetAcc* _pParent,sal_uInt16 _nPos ); ~SvxShowCharSetItem(); - css::uno::Reference< css::accessibility::XAccessible > GetAccessible(); - void ClearAccessible(); + css::uno::Reference< css::accessibility::XAccessible > const & GetAccessible(); + void ClearAccessible(); }; diff --git a/svx/source/inc/datanavi.hxx b/svx/source/inc/datanavi.hxx index 83d44467088b..eda7ac894981 100644 --- a/svx/source/inc/datanavi.hxx +++ b/svx/source/inc/datanavi.hxx @@ -161,7 +161,7 @@ namespace svxform /** convert submission replace string from API value to UI value. Use 'none' as default. */ - OUString toUI( const OUString& rStr ) const + OUString const & toUI( const OUString& rStr ) const { if( rStr == m_sDoc_API ) return m_sDoc_UI; @@ -173,7 +173,7 @@ namespace svxform /** convert submission replace string from UI to API. Use 'none' as default. */ - OUString toAPI( const OUString& rStr ) const + OUString const & toAPI( const OUString& rStr ) const { if( rStr == m_sDoc_UI ) return m_sDoc_API; @@ -209,7 +209,7 @@ namespace svxform } /** convert from API to UI; put is default. */ - OUString toUI( const OUString& rStr ) const + OUString const & toUI( const OUString& rStr ) const { if( rStr == m_sGet_API ) return m_sGet_UI; @@ -220,7 +220,7 @@ namespace svxform } /** convert from UI to API; put is default */ - OUString toAPI( const OUString& rStr ) const + OUString const & toAPI( const OUString& rStr ) const { if( rStr == m_sGet_UI ) return m_sGet_API; diff --git a/svx/source/inc/formcontroller.hxx b/svx/source/inc/formcontroller.hxx index 6db2813a6961..e93160e94172 100644 --- a/svx/source/inc/formcontroller.hxx +++ b/svx/source/inc/formcontroller.hxx @@ -406,7 +406,7 @@ namespace svxform virtual void SAL_CALL invalidateAllFeatures( ) throw (css::uno::RuntimeException, std::exception) override; // method for registration - static css::uno::Sequence< OUString > getSupportedServiceNames_Static(); + static css::uno::Sequence< OUString > const & getSupportedServiceNames_Static(); // comphelper::OPropertyArrayUsageHelper virtual void fillProperties( diff --git a/svx/source/inc/svxpixelctlaccessiblecontext.hxx b/svx/source/inc/svxpixelctlaccessiblecontext.hxx index b9a572065967..07d807364eb1 100644 --- a/svx/source/inc/svxpixelctlaccessiblecontext.hxx +++ b/svx/source/inc/svxpixelctlaccessiblecontext.hxx @@ -135,7 +135,7 @@ public: Rectangle GetBoundingBoxOnScreen() throw( css::uno::RuntimeException ); - Rectangle GetBoundingBox() throw( css::uno::RuntimeException ); + Rectangle const & GetBoundingBox() throw( css::uno::RuntimeException ); /// @returns true if it's disposed or in disposing inline bool IsAlive() const; diff --git a/svx/source/inc/svxrectctaccessiblecontext.hxx b/svx/source/inc/svxrectctaccessiblecontext.hxx index 2f3d072b3e82..f9dcc099258d 100644 --- a/svx/source/inc/svxrectctaccessiblecontext.hxx +++ b/svx/source/inc/svxrectctaccessiblecontext.hxx @@ -427,7 +427,7 @@ public: protected: Rectangle GetBoundingBoxOnScreen() throw( css::uno::RuntimeException ); - Rectangle GetBoundingBox() throw( css::uno::RuntimeException ); + Rectangle const & GetBoundingBox() throw( css::uno::RuntimeException ); void CommitChange( const css::accessibility::AccessibleEventObject& rEvent ); |