convert sw/inc/list.hxx from String to OUString

Change-Id: If9b4a27ec446f3eca5016148ec3eeb628d705c72
This commit is contained in:
Noel Grandin
2013-10-10 14:44:47 +02:00
parent ba53043aa4
commit 2ce8bbbcb5
2 changed files with 6 additions and 6 deletions

View File

@@ -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 );

View File

@@ -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();
}