diff options
-rw-r--r-- | include/svl/cryptosign.hxx | 5 | ||||
-rw-r--r-- | include/svl/custritm.hxx | 5 | ||||
-rw-r--r-- | include/svl/instrm.hxx | 2 | ||||
-rw-r--r-- | include/svl/itemprop.hxx | 5 | ||||
-rw-r--r-- | include/svl/lockfilecommon.hxx | 2 | ||||
-rw-r--r-- | include/svl/macitem.hxx | 9 | ||||
-rw-r--r-- | include/svl/outstrm.hxx | 2 | ||||
-rw-r--r-- | include/svl/style.hxx | 2 | ||||
-rw-r--r-- | include/svl/urlbmk.hxx | 5 | ||||
-rw-r--r-- | svl/source/inc/poolio.hxx | 5 | ||||
-rw-r--r-- | svl/source/items/macitem.cxx | 5 | ||||
-rw-r--r-- | svl/source/items/style.cxx | 5 | ||||
-rw-r--r-- | svl/source/misc/lockfilecommon.cxx | 5 | ||||
-rw-r--r-- | svl/source/misc/strmadpt.cxx | 10 | ||||
-rw-r--r-- | svl/source/numbers/numfmuno.cxx | 13 | ||||
-rw-r--r-- | svl/source/numbers/numfmuno.hxx | 6 | ||||
-rw-r--r-- | svl/source/numbers/supservs.cxx | 5 | ||||
-rw-r--r-- | svl/source/numbers/supservs.hxx | 2 | ||||
-rw-r--r-- | svl/source/passwordcontainer/passwordcontainer.hxx | 13 | ||||
-rw-r--r-- | svl/source/undo/undo.cxx | 9 |
20 files changed, 64 insertions, 51 deletions
diff --git a/include/svl/cryptosign.hxx b/include/svl/cryptosign.hxx index 5c971cc99f07..3bb682916edc 100644 --- a/include/svl/cryptosign.hxx +++ b/include/svl/cryptosign.hxx @@ -9,6 +9,7 @@ #include <sal/types.h> +#include <utility> #include <vector> #include <rtl/strbuf.hxx> @@ -48,8 +49,8 @@ class SVL_DLLPUBLIC Signing { public: - Signing(const css::uno::Reference<css::security::XCertificate>& xCertificate) : - m_xCertificate(xCertificate) + Signing(css::uno::Reference<css::security::XCertificate> xCertificate) : + m_xCertificate(std::move(xCertificate)) { } diff --git a/include/svl/custritm.hxx b/include/svl/custritm.hxx index d46fe011ad6c..90215aff45d3 100644 --- a/include/svl/custritm.hxx +++ b/include/svl/custritm.hxx @@ -23,6 +23,7 @@ #include <svl/svldllapi.h> #include <svl/poolitem.hxx> #include <cassert> +#include <utility> class SVL_DLLPUBLIC CntUnencodedStringItem: public SfxPoolItem { @@ -33,8 +34,8 @@ public: CntUnencodedStringItem(sal_uInt16 which): SfxPoolItem(which) {} - CntUnencodedStringItem(sal_uInt16 which, const OUString & rTheValue): - SfxPoolItem(which), m_aValue(rTheValue) + CntUnencodedStringItem(sal_uInt16 which, OUString aTheValue): + SfxPoolItem(which), m_aValue(std::move(aTheValue)) {} virtual bool operator ==(const SfxPoolItem & rItem) const override; diff --git a/include/svl/instrm.hxx b/include/svl/instrm.hxx index 6ddccfeaf3c5..66f30a107a05 100644 --- a/include/svl/instrm.hxx +++ b/include/svl/instrm.hxx @@ -53,7 +53,7 @@ class SVL_DLLPUBLIC SvInputStream final : public SvStream SVL_DLLPRIVATE virtual void SetSize(sal_uInt64) override; public: - SvInputStream( css::uno::Reference< css::io::XInputStream > const & rTheStream ); + SvInputStream( css::uno::Reference< css::io::XInputStream > xTheStream ); virtual ~SvInputStream() override; }; diff --git a/include/svl/itemprop.hxx b/include/svl/itemprop.hxx index 12954a1324b0..08207f1b173e 100644 --- a/include/svl/itemprop.hxx +++ b/include/svl/itemprop.hxx @@ -27,6 +27,7 @@ #include <svl/svldllapi.h> #include <o3tl/sorted_vector.hxx> #include <string_view> +#include <utility> // values from com/sun/star/beans/PropertyAttribute #define PROPERTY_NONE 0 @@ -44,9 +45,9 @@ struct SfxItemPropertyMapEntry sal_uInt8 nMemberId; PropertyMoreFlags nMoreFlags; - SfxItemPropertyMapEntry(const OUString & _aName, sal_uInt16 _nWID, css::uno::Type const & _rType, + SfxItemPropertyMapEntry(OUString _aName, sal_uInt16 _nWID, css::uno::Type const & _rType, sal_Int16 _nFlags, sal_uInt8 const _nMemberId, PropertyMoreFlags _nMoreFlags = PropertyMoreFlags::NONE) - : aName( _aName ) + : aName(std::move( _aName )) , aType( _rType ) , nWID( _nWID ) , nFlags( _nFlags ) diff --git a/include/svl/lockfilecommon.hxx b/include/svl/lockfilecommon.hxx index 054e723ee01d..d71cb8262e92 100644 --- a/include/svl/lockfilecommon.hxx +++ b/include/svl/lockfilecommon.hxx @@ -53,7 +53,7 @@ protected: static OUString GenerateOwnLockFileURL(std::u16string_view aOrigURL, std::u16string_view aPrefix); public: - LockFileCommon(const OUString& aLockFileURL); + LockFileCommon(OUString aLockFileURL); virtual ~LockFileCommon(); const OUString& GetURL() const; diff --git a/include/svl/macitem.hxx b/include/svl/macitem.hxx index 4d89510346c9..e58871101adc 100644 --- a/include/svl/macitem.hxx +++ b/include/svl/macitem.hxx @@ -25,6 +25,7 @@ #include <svl/svldllapi.h> #include <svl/poolitem.hxx> #include <map> +#include <utility> class SvStream; enum class SvMacroItemId : sal_uInt16; @@ -48,9 +49,9 @@ class SVL_DLLPUBLIC SvxMacro public: - SvxMacro( const OUString &rMacName, const OUString &rLanguage); + SvxMacro( OUString aMacName, const OUString &rLanguage); - SvxMacro( const OUString &rMacName, const OUString &rLibName, + SvxMacro( OUString aMacName, OUString aLibName, ScriptType eType); // = STARBASIC removes const OUString &GetLibName() const { return aLibName; } @@ -62,9 +63,9 @@ public: bool HasMacro() const { return !aMacName.isEmpty(); } }; -inline SvxMacro::SvxMacro( const OUString &rMacName, const OUString &rLibName, +inline SvxMacro::SvxMacro( OUString _aMacName, OUString _aLibName, ScriptType eTyp ) - : aMacName( rMacName ), aLibName( rLibName ), eType( eTyp ) + : aMacName(std::move( _aMacName )), aLibName(std::move( _aLibName )), eType( eTyp ) {} // Macro Table, destroys the pointers in the DTor! diff --git a/include/svl/outstrm.hxx b/include/svl/outstrm.hxx index ff694a5c97a5..f85b26515d7e 100644 --- a/include/svl/outstrm.hxx +++ b/include/svl/outstrm.hxx @@ -44,7 +44,7 @@ class SVL_DLLPUBLIC SvOutputStream final : public SvStream SVL_DLLPRIVATE virtual void SetSize(sal_uInt64) override; public: - SvOutputStream(css::uno::Reference<css::io::XOutputStream> const& rTheStream); + SvOutputStream(css::uno::Reference<css::io::XOutputStream> xTheStream); virtual ~SvOutputStream() override; }; diff --git a/include/svl/style.hxx b/include/svl/style.hxx index 5ad4d0d33773..b5b7aa3adcf5 100644 --- a/include/svl/style.hxx +++ b/include/svl/style.hxx @@ -337,7 +337,7 @@ class UNLESS_MERGELIBS(SVL_DLLPUBLIC) SfxStyleSheetModifiedHint final : public S OUString aName; public: - SfxStyleSheetModifiedHint( const OUString& rOld, + SfxStyleSheetModifiedHint( OUString aOld, SfxStyleSheetBase& ); const OUString& GetOldName() const { return aName; } }; diff --git a/include/svl/urlbmk.hxx b/include/svl/urlbmk.hxx index a0b97a2b0d00..e2a090806dcb 100644 --- a/include/svl/urlbmk.hxx +++ b/include/svl/urlbmk.hxx @@ -21,6 +21,7 @@ #define INCLUDED_SVL_URLBMK_HXX #include <rtl/ustring.hxx> +#include <utility> /** @@ -36,8 +37,8 @@ class INetBookmark OUString aDescr; public: - INetBookmark( const OUString &rUrl, const OUString &rDescr ) - : aUrl( rUrl ), aDescr( rDescr ) + INetBookmark( OUString _aUrl, OUString _aDescr ) + : aUrl(std::move( _aUrl )), aDescr(std::move( _aDescr )) {} INetBookmark() {} diff --git a/svl/source/inc/poolio.hxx b/svl/source/inc/poolio.hxx index 1080672b09ff..cc406f31e0a0 100644 --- a/svl/source/inc/poolio.hxx +++ b/svl/source/inc/poolio.hxx @@ -26,6 +26,7 @@ #include <tools/debug.hxx> #include <memory> #include <o3tl/sorted_vector.hxx> +#include <utility> class SfxPoolItem; class SfxItemPoolUser; @@ -162,9 +163,9 @@ struct SfxItemPool_Impl sal_uInt16 mnEnd; MapUnit eDefMetric; - SfxItemPool_Impl( SfxItemPool* pMaster, const OUString& rName, sal_uInt16 nStart, sal_uInt16 nEnd ) + SfxItemPool_Impl( SfxItemPool* pMaster, OUString _aName, sal_uInt16 nStart, sal_uInt16 nEnd ) : maPoolItemArrays(nEnd - nStart + 1) - , aName(rName) + , aName(std::move(_aName)) , maPoolDefaults(nEnd - nStart + 1) , mpStaticDefaults(nullptr) , mpMaster(pMaster) diff --git a/svl/source/items/macitem.cxx b/svl/source/items/macitem.cxx index b0750212e3dc..4dae21dd4fc9 100644 --- a/svl/source/items/macitem.cxx +++ b/svl/source/items/macitem.cxx @@ -27,9 +27,10 @@ #include <svl/macitem.hxx> #include <stringio.hxx> #include <algorithm> +#include <utility> -SvxMacro::SvxMacro( const OUString &rMacName, const OUString &rLanguage) - : aMacName( rMacName ), aLibName( rLanguage), +SvxMacro::SvxMacro( OUString _aMacName, const OUString &rLanguage) + : aMacName(std::move( _aMacName )), aLibName( rLanguage), eType( EXTENDED_STYPE) { if ( rLanguage == SVX_MACRO_LANGUAGE_STARBASIC ) diff --git a/svl/source/items/style.cxx b/svl/source/items/style.cxx index 4e7655a9ae08..50952a8857d2 100644 --- a/svl/source/items/style.cxx +++ b/svl/source/items/style.cxx @@ -34,6 +34,7 @@ #include <unotools/syslocale.hxx> #include <comphelper/servicehelper.hxx> #include <rtl/ustrbuf.hxx> +#include <utility> #ifdef DBG_UTIL namespace { @@ -62,11 +63,11 @@ static DbgStyleSheetReferences aDbgStyleSheetReferences; SfxStyleSheetModifiedHint::SfxStyleSheetModifiedHint ( - const OUString& rOldName, + OUString aOldName, SfxStyleSheetBase& rStyleSheet // Remains with the caller ) : SfxStyleSheetHint( SfxHintId::StyleSheetModified, rStyleSheet ), - aName( rOldName ) + aName(std::move( aOldName )) {} diff --git a/svl/source/misc/lockfilecommon.cxx b/svl/source/misc/lockfilecommon.cxx index baed8636ecfb..982ce7ce02da 100644 --- a/svl/source/misc/lockfilecommon.cxx +++ b/svl/source/misc/lockfilecommon.cxx @@ -41,14 +41,15 @@ #include <salhelper/linkhelper.hxx> #include <svl/lockfilecommon.hxx> +#include <utility> using namespace ::com::sun::star; namespace svt { -LockFileCommon::LockFileCommon(const OUString& aLockFileURL) - : m_aURL(aLockFileURL) +LockFileCommon::LockFileCommon(OUString aLockFileURL) + : m_aURL(std::move(aLockFileURL)) { } diff --git a/svl/source/misc/strmadpt.cxx b/svl/source/misc/strmadpt.cxx index d99aae4687ce..7a755d924986 100644 --- a/svl/source/misc/strmadpt.cxx +++ b/svl/source/misc/strmadpt.cxx @@ -31,6 +31,7 @@ #include <osl/diagnose.h> #include <svl/instrm.hxx> #include <svl/outstrm.hxx> +#include <utility> using namespace com::sun::star; @@ -313,8 +314,8 @@ void SvInputStream::SetSize(sal_uInt64) SetError(ERRCODE_IO_NOTSUPPORTED); } -SvInputStream::SvInputStream( css::uno::Reference< css::io::XInputStream > const & rTheStream): - m_xStream(rTheStream), +SvInputStream::SvInputStream( css::uno::Reference< css::io::XInputStream > xTheStream): + m_xStream(std::move(xTheStream)), m_nSeekedFrom(STREAM_SEEK_TO_END) { SetBufferSize(0); @@ -408,9 +409,8 @@ void SvOutputStream::SetSize(sal_uInt64) SetError(ERRCODE_IO_NOTSUPPORTED); } -SvOutputStream::SvOutputStream(uno::Reference< io::XOutputStream > const & - rTheStream): - m_xStream(rTheStream) +SvOutputStream::SvOutputStream(uno::Reference< io::XOutputStream > xTheStream): + m_xStream(std::move(xTheStream)) { SetBufferSize(0); } diff --git a/svl/source/numbers/numfmuno.cxx b/svl/source/numbers/numfmuno.cxx index a17a71a81947..98ead86e432d 100644 --- a/svl/source/numbers/numfmuno.cxx +++ b/svl/source/numbers/numfmuno.cxx @@ -36,6 +36,7 @@ #include <svl/zforlist.hxx> #include <svl/zformat.hxx> #include <svl/itemprop.hxx> +#include <utility> using namespace com::sun::star; @@ -344,9 +345,9 @@ uno::Sequence<OUString> SAL_CALL SvNumberFormatterServiceObj::getSupportedServic return { "com.sun.star.util.NumberFormatter" }; } -SvNumberFormatsObj::SvNumberFormatsObj( SvNumberFormatsSupplierObj& _rParent, ::comphelper::SharedMutex const & _rMutex ) +SvNumberFormatsObj::SvNumberFormatsObj( SvNumberFormatsSupplierObj& _rParent, ::comphelper::SharedMutex _aMutex ) :m_xSupplier( &_rParent ) - ,m_aMutex( _rMutex ) + ,m_aMutex(std::move( _aMutex )) { } @@ -584,10 +585,10 @@ uno::Sequence<OUString> SAL_CALL SvNumberFormatsObj::getSupportedServiceNames() return { "com.sun.star.util.NumberFormats" }; } -SvNumberFormatObj::SvNumberFormatObj( SvNumberFormatsSupplierObj& rParent, sal_uLong nK, const ::comphelper::SharedMutex& _rMutex ) +SvNumberFormatObj::SvNumberFormatObj( SvNumberFormatsSupplierObj& rParent, sal_uLong nK, ::comphelper::SharedMutex _aMutex ) :m_xSupplier( &rParent ) ,nKey( nK ) - ,m_aMutex( _rMutex ) + ,m_aMutex(std::move( _aMutex )) { } @@ -794,9 +795,9 @@ uno::Sequence<OUString> SAL_CALL SvNumberFormatObj::getSupportedServiceNames() return { "com.sun.star.util.NumberFormatProperties" }; } -SvNumberFormatSettingsObj::SvNumberFormatSettingsObj( SvNumberFormatsSupplierObj& rParent, const ::comphelper::SharedMutex& _rMutex ) +SvNumberFormatSettingsObj::SvNumberFormatSettingsObj( SvNumberFormatsSupplierObj& rParent, ::comphelper::SharedMutex _aMutex ) :m_xSupplier( &rParent ) - ,m_aMutex( _rMutex ) + ,m_aMutex(std::move( _aMutex )) { } diff --git a/svl/source/numbers/numfmuno.hxx b/svl/source/numbers/numfmuno.hxx index fbd7889ce8cd..f88c2e6429af 100644 --- a/svl/source/numbers/numfmuno.hxx +++ b/svl/source/numbers/numfmuno.hxx @@ -90,7 +90,7 @@ private: mutable ::comphelper::SharedMutex m_aMutex; public: - SvNumberFormatsObj(SvNumberFormatsSupplierObj& pParent, ::comphelper::SharedMutex const & _rMutex); + SvNumberFormatsObj(SvNumberFormatsSupplierObj& pParent, ::comphelper::SharedMutex _aMutex); virtual ~SvNumberFormatsObj() override; @@ -140,7 +140,7 @@ private: mutable ::comphelper::SharedMutex m_aMutex; public: - SvNumberFormatObj( SvNumberFormatsSupplierObj& rParent, sal_uLong nK, const ::comphelper::SharedMutex& _rMutex ); + SvNumberFormatObj( SvNumberFormatsSupplierObj& rParent, sal_uLong nK, ::comphelper::SharedMutex _aMutex ); virtual ~SvNumberFormatObj() override; // XPropertySet @@ -186,7 +186,7 @@ private: mutable ::comphelper::SharedMutex m_aMutex; public: - SvNumberFormatSettingsObj( SvNumberFormatsSupplierObj& rParent, const ::comphelper::SharedMutex& _rMutex); + SvNumberFormatSettingsObj( SvNumberFormatsSupplierObj& rParent, ::comphelper::SharedMutex _aMutex); virtual ~SvNumberFormatSettingsObj() override; diff --git a/svl/source/numbers/supservs.cxx b/svl/source/numbers/supservs.cxx index 165e67829feb..5a51158a2beb 100644 --- a/svl/source/numbers/supservs.cxx +++ b/svl/source/numbers/supservs.cxx @@ -27,6 +27,7 @@ #include <svl/numformat.hxx> #include <tools/debug.hxx> #include <osl/mutex.hxx> +#include <utility> #include <osl/diagnose.h> using namespace ::com::sun::star::uno; @@ -36,8 +37,8 @@ using namespace ::com::sun::star::util; using namespace ::utl; -SvNumberFormatsSupplierServiceObject::SvNumberFormatsSupplierServiceObject(const css::uno::Reference< css::uno::XComponentContext >& _rxORB) - :m_xORB(_rxORB) +SvNumberFormatsSupplierServiceObject::SvNumberFormatsSupplierServiceObject(css::uno::Reference< css::uno::XComponentContext > _xORB) + :m_xORB(std::move(_xORB)) { } diff --git a/svl/source/numbers/supservs.hxx b/svl/source/numbers/supservs.hxx index 5baf8f055bc3..4ddf5751e84a 100644 --- a/svl/source/numbers/supservs.hxx +++ b/svl/source/numbers/supservs.hxx @@ -44,7 +44,7 @@ class SvNumberFormatsSupplierServiceObject final void implEnsureFormatter(); public: - explicit SvNumberFormatsSupplierServiceObject(const css::uno::Reference< css::uno::XComponentContext >& _rxORB); + explicit SvNumberFormatsSupplierServiceObject(css::uno::Reference< css::uno::XComponentContext > _xORB); virtual ~SvNumberFormatsSupplierServiceObject() override; // XInterface diff --git a/svl/source/passwordcontainer/passwordcontainer.hxx b/svl/source/passwordcontainer/passwordcontainer.hxx index 1f1d2569d4de..ca4b549f3b2d 100644 --- a/svl/source/passwordcontainer/passwordcontainer.hxx +++ b/svl/source/passwordcontainer/passwordcontainer.hxx @@ -19,6 +19,7 @@ #ifndef INCLUDED_SVL_SOURCE_PASSWORDCONTAINER_PASSWORDCONTAINER_HXX #define INCLUDED_SVL_SOURCE_PASSWORDCONTAINER_PASSWORDCONTAINER_HXX +#include <utility> #include <vector> #include <map> #include <optional> @@ -73,19 +74,19 @@ class NamePasswordRecord public: - NamePasswordRecord( const OUString& aName ) - : m_aName( aName ) + NamePasswordRecord( OUString aName ) + : m_aName(std::move( aName )) , m_bHasMemoryPasswords( false ) , m_bHasPersistentPassword( false ) { } - NamePasswordRecord( const OUString& aName, const OUString& aPersistentList, const OUString& aPersistentIV ) - : m_aName( aName ) + NamePasswordRecord( OUString aName, OUString aPersistentList, OUString aPersistentIV ) + : m_aName(std::move( aName )) , m_bHasMemoryPasswords( false ) , m_bHasPersistentPassword( true ) - , m_aPersistentPassword( aPersistentList ) - , m_aPersistentIV( aPersistentIV ) + , m_aPersistentPassword(std::move( aPersistentList )) + , m_aPersistentIV(std::move( aPersistentIV )) { } diff --git a/svl/source/undo/undo.cxx b/svl/source/undo/undo.cxx index 773d17313cea..2424a9141a78 100644 --- a/svl/source/undo/undo.cxx +++ b/svl/source/undo/undo.cxx @@ -29,6 +29,7 @@ #include <unotools/datetime.hxx> #include <memory> +#include <utility> #include <vector> #include <limits.h> #include <algorithm> @@ -218,10 +219,10 @@ namespace svl::undo::impl { } - NotifyUndoListener( UndoListenerStringMethod i_notificationMethod, const OUString& i_actionComment ) + NotifyUndoListener( UndoListenerStringMethod i_notificationMethod, OUString i_actionComment ) :m_notificationMethod( nullptr ) ,m_altNotificationMethod( i_notificationMethod ) - ,m_sActionComment( i_actionComment ) + ,m_sActionComment(std::move( i_actionComment )) { } @@ -1274,8 +1275,8 @@ struct SfxListUndoAction::Impl OUString maComment; OUString maRepeatComment; - Impl( sal_uInt16 nId, ViewShellId nViewShellId, const OUString& rComment, const OUString& rRepeatComment ) : - mnId(nId), mnViewShellId(nViewShellId), maComment(rComment), maRepeatComment(rRepeatComment) {} + Impl( sal_uInt16 nId, ViewShellId nViewShellId, OUString aComment, OUString aRepeatComment ) : + mnId(nId), mnViewShellId(nViewShellId), maComment(std::move(aComment)), maRepeatComment(std::move(aRepeatComment)) {} }; sal_uInt16 SfxListUndoAction::GetId() const |