diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-29 16:12:25 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-09-05 08:54:11 +0200 |
commit | 10407bdad878e4c17e69043d1b6cad72b1aa9672 (patch) | |
tree | 6a7cfc11b45e4c77081b4626ed1fdfef89897ef7 /svx/source | |
parent | ab5070a57b00a59816bbe157953d7de10a52c627 (diff) |
convert include/svx/xln*.hxx from String to OUString
Change-Id: I556383c918556d634fa3bae6144f973c23ceff03
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/xoutdev/xattr.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/xoutdev/xattr.cxx b/svx/source/xoutdev/xattr.cxx index e37420bfc824..7fae1eae41a8 100644 --- a/svx/source/xoutdev/xattr.cxx +++ b/svx/source/xoutdev/xattr.cxx @@ -658,7 +658,7 @@ double XDash::CreateDotDashArray(::std::vector< double >& rDotDashArray, double TYPEINIT1_AUTOFACTORY(XLineDashItem, NameOrIndex); -XLineDashItem::XLineDashItem(const XubString& rName, const XDash& rTheDash) : +XLineDashItem::XLineDashItem(const OUString& rName, const XDash& rTheDash) : NameOrIndex(XATTR_LINEDASH, rName), aDash(rTheDash) { @@ -1114,7 +1114,7 @@ XLineColorItem::XLineColorItem(sal_Int32 nIndex, const Color& rTheColor) : { } -XLineColorItem::XLineColorItem(const XubString& rName, const Color& rTheColor) : +XLineColorItem::XLineColorItem(const OUString& rName, const Color& rTheColor) : XColorItem(XATTR_LINECOLOR, rName, rTheColor) { } @@ -1277,7 +1277,7 @@ XLineStartItem::XLineStartItem(sal_Int32 nIndex) { } -XLineStartItem::XLineStartItem(const XubString& rName, const basegfx::B2DPolyPolygon& rPolyPolygon) +XLineStartItem::XLineStartItem(const OUString& rName, const basegfx::B2DPolyPolygon& rPolyPolygon) : NameOrIndex(XATTR_LINESTART, rName), maPolyPolygon(rPolyPolygon) { @@ -1635,7 +1635,7 @@ XLineEndItem::XLineEndItem(sal_Int32 nIndex) { } -XLineEndItem::XLineEndItem(const XubString& rName, const basegfx::B2DPolyPolygon& rPolyPolygon) +XLineEndItem::XLineEndItem(const OUString& rName, const basegfx::B2DPolyPolygon& rPolyPolygon) : NameOrIndex(XATTR_LINEEND, rName), maPolyPolygon(rPolyPolygon) { |