summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-29 16:12:25 +0200
committerNoel Grandin <noel@peralex.com>2013-09-05 08:54:11 +0200
commit10407bdad878e4c17e69043d1b6cad72b1aa9672 (patch)
tree6a7cfc11b45e4c77081b4626ed1fdfef89897ef7
parentab5070a57b00a59816bbe157953d7de10a52c627 (diff)
convert include/svx/xln*.hxx from String to OUString
Change-Id: I556383c918556d634fa3bae6144f973c23ceff03
-rw-r--r--include/svx/xlnclit.hxx2
-rw-r--r--include/svx/xlndsit.hxx2
-rw-r--r--include/svx/xlnedit.hxx2
-rw-r--r--include/svx/xlnstit.hxx2
-rw-r--r--svx/source/xoutdev/xattr.cxx8
5 files changed, 8 insertions, 8 deletions
diff --git a/include/svx/xlnclit.hxx b/include/svx/xlnclit.hxx
index 609efaec9e65..153b2aabd20e 100644
--- a/include/svx/xlnclit.hxx
+++ b/include/svx/xlnclit.hxx
@@ -32,7 +32,7 @@ public:
TYPEINFO();
XLineColorItem() {}
XLineColorItem(sal_Int32 nIndex, const Color& rTheColor);
- XLineColorItem(const String& rName, const Color& rTheColor);
+ XLineColorItem(const OUString& rName, const Color& rTheColor);
XLineColorItem(SvStream& rIn);
virtual SfxPoolItem* Clone(SfxItemPool* pPool = 0) const;
diff --git a/include/svx/xlndsit.hxx b/include/svx/xlndsit.hxx
index a4d7a6ca7122..369b0f60fa45 100644
--- a/include/svx/xlndsit.hxx
+++ b/include/svx/xlndsit.hxx
@@ -37,7 +37,7 @@ class SVX_DLLPUBLIC XLineDashItem : public NameOrIndex
public:
TYPEINFO();
XLineDashItem() : NameOrIndex(XATTR_LINEDASH, -1) {}
- XLineDashItem(const String& rName, const XDash& rTheDash);
+ XLineDashItem(const OUString& rName, const XDash& rTheDash);
XLineDashItem(SfxItemPool* pPool, const XDash& rTheDash);
XLineDashItem(const XLineDashItem& rItem);
XLineDashItem(SvStream& rIn);
diff --git a/include/svx/xlnedit.hxx b/include/svx/xlnedit.hxx
index fdf9abdda894..793a20e89f78 100644
--- a/include/svx/xlnedit.hxx
+++ b/include/svx/xlnedit.hxx
@@ -36,7 +36,7 @@ class SVX_DLLPUBLIC XLineEndItem : public NameOrIndex
public:
TYPEINFO();
XLineEndItem(sal_Int32 nIndex = -1);
- XLineEndItem(const String& rName, const basegfx::B2DPolyPolygon& rPolyPolygon);
+ XLineEndItem(const OUString& rName, const basegfx::B2DPolyPolygon& rPolyPolygon);
XLineEndItem(SfxItemPool* pPool, const basegfx::B2DPolyPolygon& rPolyPolygon);
XLineEndItem(const XLineEndItem& rItem);
XLineEndItem(SvStream& rIn);
diff --git a/include/svx/xlnstit.hxx b/include/svx/xlnstit.hxx
index 1d57bf009b7c..1633be1b8136 100644
--- a/include/svx/xlnstit.hxx
+++ b/include/svx/xlnstit.hxx
@@ -36,7 +36,7 @@ class SVX_DLLPUBLIC XLineStartItem : public NameOrIndex
public:
TYPEINFO();
XLineStartItem(sal_Int32 nIndex = -1);
- XLineStartItem(const String& rName, const basegfx::B2DPolyPolygon& rPolyPolygon);
+ XLineStartItem(const OUString& rName, const basegfx::B2DPolyPolygon& rPolyPolygon);
XLineStartItem(SfxItemPool* pPool, const basegfx::B2DPolyPolygon& rPolyPolygon);
XLineStartItem(const XLineStartItem& rItem);
XLineStartItem(SvStream& rIn);
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)
{