diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2013-08-17 18:41:03 +0200 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2013-08-17 21:10:39 +0000 |
commit | 8aee44c1814ae7c1af14e942cf0513e1612a82d9 (patch) | |
tree | ae9cfa6bc005c875176691c8c216f7421800847b /sw/inc | |
parent | 04314cc1244a5c681c2a0ea743e3675665ed7b7c (diff) |
String to OUString
Change-Id: I41b73e0af6841247a0403974b1c66e5a66123420
Reviewed-on: https://gerrit.libreoffice.org/5483
Reviewed-by: Matteo Casalin <matteo.casalin@yahoo.com>
Tested-by: Matteo Casalin <matteo.casalin@yahoo.com>
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/lineinfo.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/lineinfo.hxx b/sw/inc/lineinfo.hxx index 22bb1a9167a8..2557ada92aa8 100644 --- a/sw/inc/lineinfo.hxx +++ b/sw/inc/lineinfo.hxx @@ -38,7 +38,7 @@ class SW_DLLPUBLIC SwLineNumberInfo : public SwClient /**< purpose of derivation character style for displaying the numbers. */ { SvxNumberType aType; ///< e.g. roman linenumbers - String aDivider; ///< String for aditional interval (vert. lines user defined) + OUString aDivider; ///< String for aditional interval (vert. lines user defined) sal_uInt16 nPosFromLeft; ///< Position for paint sal_uInt16 nCountBy; ///< Paint only for every n line sal_uInt16 nDividerCountBy; /**< Interval for display of an user defined @@ -65,8 +65,8 @@ public: const SvxNumberType &GetNumType() const { return aType; } void SetNumType( SvxNumberType aNew ){ aType = aNew; } - const String &GetDivider() const { return aDivider; } - void SetDivider( const String &r ) { aDivider = r; } + OUString GetDivider() const { return aDivider; } + void SetDivider( const OUString &r ) { aDivider = r; } sal_uInt16 GetDividerCountBy() const { return nDividerCountBy; } void SetDividerCountBy( sal_uInt16 n ) { nDividerCountBy = n; } |