diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-08-29 20:44:22 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-08-30 11:39:01 +0100 |
commit | 74929bba736cc6cceed3c088e13f5952abb1bd2b (patch) | |
tree | 8a026d95bc586ca6a41686dee32dfa53b659b252 /include/svx/hlnkitem.hxx | |
parent | fc7e7b683112e9ccd23104f38d4acc3417e9d5b8 (diff) |
Related: fdo#38838 remove UniString::ToUpperAscii
things got a little out of hand and I ended up
converting quite a bit of calc to OUString
Change-Id: I056326d37ffefa8c120cb2e564d166dd9f20f216
Diffstat (limited to 'include/svx/hlnkitem.hxx')
-rw-r--r-- | include/svx/hlnkitem.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svx/hlnkitem.hxx b/include/svx/hlnkitem.hxx index d1bdcfe5aa71..6913c412c96e 100644 --- a/include/svx/hlnkitem.hxx +++ b/include/svx/hlnkitem.hxx @@ -39,7 +39,7 @@ enum SvxLinkInsertMode class SVX_DLLPUBLIC SvxHyperlinkItem : public SfxPoolItem { - String sName; + OUString sName; String sURL; String sTarget; SvxLinkInsertMode eType; @@ -69,8 +69,8 @@ public: virtual bool QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const; virtual bool PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ); - const String& GetName() const { return sName; } - void SetName(const String& rName) { sName = rName; } + const OUString& GetName() const { return sName; } + void SetName(const OUString& rName) { sName = rName; } const String& GetURL() const { return sURL; } void SetURL(const String& rURL) { sURL = rURL; } |