summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-10-10 14:44:47 +0200
committerNoel Grandin <noel@peralex.com>2013-10-15 12:25:36 +0200
commit2ce8bbbcb51cbe2dcd91f00dc38e41eb7fce7420 (patch)
treee1f956df64b2aef5cbb11dc8e88e3d7b1679376e
parentba53043aa4dd65c83652c6829c6bd8d6de1f5f9e (diff)
convert sw/inc/list.hxx from String to OUString
Change-Id: If9b4a27ec446f3eca5016148ec3eeb628d705c72
-rw-r--r--sw/inc/list.hxx6
-rw-r--r--sw/source/core/doc/list.cxx6
2 files changed, 6 insertions, 6 deletions
diff --git a/sw/inc/list.hxx b/sw/inc/list.hxx
index f21a32f38ed8..5b0a703e7828 100644
--- a/sw/inc/list.hxx
+++ b/sw/inc/list.hxx
@@ -31,14 +31,14 @@ class SwListImpl;
class SwList
{
public:
- SwList( const String sListId,
+ SwList( const OUString sListId,
SwNumRule& rDefaultListStyle,
const SwNodes& rNodes );
~SwList();
- const String GetListId() const;
+ const OUString GetListId() const;
- const String GetDefaultListStyleName() const;
+ const OUString GetDefaultListStyleName() const;
void InsertListItem( SwNodeNum& rNodeNum,
const int nLevel );
diff --git a/sw/source/core/doc/list.cxx b/sw/source/core/doc/list.cxx
index e32585edeeaa..2c5124f9fda6 100644
--- a/sw/source/core/doc/list.cxx
+++ b/sw/source/core/doc/list.cxx
@@ -220,7 +220,7 @@ void SwListImpl::NotifyItemsOnListLevel( const int nLevel )
}
// SwList ---------------------------------------------------------------------
-SwList::SwList( const String sListId,
+SwList::SwList( const OUString sListId,
SwNumRule& rDefaultListStyle,
const SwNodes& rNodes )
: mpListImpl( new SwListImpl( sListId, rDefaultListStyle, rNodes ) )
@@ -232,12 +232,12 @@ SwList::~SwList()
delete mpListImpl;
}
-const String SwList::GetListId() const
+const OUString SwList::GetListId() const
{
return mpListImpl->GetListId();
}
-const String SwList::GetDefaultListStyleName() const
+const OUString SwList::GetDefaultListStyleName() const
{
return mpListImpl->GetDefaultListStyleName();
}