diff options
Diffstat (limited to 'sw')
-rw-r--r-- | sw/inc/list.hxx | 6 | ||||
-rw-r--r-- | sw/source/core/doc/list.cxx | 6 |
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(); } |