diff options
author | Noel Grandin <noel@peralex.com> | 2013-10-03 13:50:31 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-10-04 09:10:11 +0200 |
commit | 049b9cb306356f97b3bcf7474223f5bdd47f1ca2 (patch) | |
tree | 396ba5fef3f646c9f0bf7c52e03cf2228a2d4f49 /sc/source | |
parent | 83eb6bc562b6de5b8f7c22c9f408e68d6566d739 (diff) |
convert sc/inc/hints.hxx from String to OUString
Change-Id: I34c95dc8fcece06df4d7869fdfb2341052232936
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/core/tool/hints.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/core/tool/hints.cxx b/sc/source/core/tool/hints.cxx index dd143e5c203b..45c9f75eeb7b 100644 --- a/sc/source/core/tool/hints.cxx +++ b/sc/source/core/tool/hints.cxx @@ -74,14 +74,14 @@ ScLinkRefreshedHint::~ScLinkRefreshedHint() { } -void ScLinkRefreshedHint::SetSheetLink( const String& rSourceUrl ) +void ScLinkRefreshedHint::SetSheetLink( const OUString& rSourceUrl ) { nLinkType = SC_LINKREFTYPE_SHEET; aUrl = rSourceUrl; } void ScLinkRefreshedHint::SetDdeLink( - const String& rA, const String& rT, const String& rI, sal_uInt8 nM ) + const OUString& rA, const OUString& rT, const OUString& rI, sal_uInt8 nM ) { nLinkType = SC_LINKREFTYPE_DDE; aDdeAppl = rA; @@ -98,8 +98,8 @@ void ScLinkRefreshedHint::SetAreaLink( const ScAddress& rPos ) // ScAutoStyleHint - STYLE() function has been called -ScAutoStyleHint::ScAutoStyleHint( const ScRange& rR, const String& rSt1, - sal_uLong nT, const String& rSt2 ) : +ScAutoStyleHint::ScAutoStyleHint( const ScRange& rR, const OUString& rSt1, + sal_uLong nT, const OUString& rSt2 ) : aRange( rR ), aStyle1( rSt1 ), aStyle2( rSt2 ), @@ -119,7 +119,7 @@ ScDBRangeRefreshedHint::~ScDBRangeRefreshedHint() { } -ScDataPilotModifiedHint::ScDataPilotModifiedHint( const String& rName ) +ScDataPilotModifiedHint::ScDataPilotModifiedHint( const OUString& rName ) : maName(rName) { } |