convert sw/inc/list.hxx from String to OUString
Change-Id: If9b4a27ec446f3eca5016148ec3eeb628d705c72
This commit is contained in:
@@ -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 );
|
||||
|
@@ -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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user