summaryrefslogtreecommitdiff
path: root/include/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-06 12:13:37 +0200
committerNoel Grandin <noel@peralex.com>2013-09-11 09:45:30 +0200
commit11986b61b2e5c80becd955cf956c2034595f65b0 (patch)
tree72eb95f039f9ce3f4d8726d16ce772336e1a6467 /include/editeng
parentac85b6cff11d193f5f71d11b1f3cc1c474653f59 (diff)
convert SvxAutocorrWord from String to OUString
Change-Id: I4f70ebb03d5028db77ab3d86eb884462c92ec9dc
Diffstat (limited to 'include/editeng')
-rw-r--r--include/editeng/svxacorr.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/editeng/svxacorr.hxx b/include/editeng/svxacorr.hxx
index c9631edc2d0a..46933f3a5638 100644
--- a/include/editeng/svxacorr.hxx
+++ b/include/editeng/svxacorr.hxx
@@ -122,15 +122,15 @@ public:
class EDITENG_DLLPUBLIC SvxAutocorrWord
{
- String sShort, sLong;
+ OUString sShort, sLong;
sal_Bool bIsTxtOnly; // Is pure ASCII - Text
public:
- SvxAutocorrWord( const String& rS, const String& rL, sal_Bool bFlag = sal_True )
+ SvxAutocorrWord( const OUString& rS, const OUString& rL, sal_Bool bFlag = sal_True )
: sShort( rS ), sLong( rL ), bIsTxtOnly( bFlag )
{}
- const String& GetShort() const { return sShort; }
- const String& GetLong() const { return sLong; }
+ const OUString& GetShort() const { return sShort; }
+ const OUString& GetLong() const { return sLong; }
sal_Bool IsTextOnly() const { return bIsTxtOnly; }
};