diff options
author | Noel Grandin <noel@peralex.com> | 2013-10-11 11:55:52 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-10-15 12:25:41 +0200 |
commit | d036580f8a382ae7f7a54529cd00cb8affa8f0c2 (patch) | |
tree | 3d07fd427acfd9c8663b3383170ac406de7b052d /sw/inc/IDocumentListsAccess.hxx | |
parent | f400bc7567bffe98f6c2dc9b2edf60481e9ed865 (diff) |
convert sw/inc/IDocumentListsAccess.hxx from String to OUString
and convert these methods parameter passing convention from
"const OUString" to the more normal "const OUString&"
Change-Id: I267b20f4c817f8353c8df9bbc0ca6cad3fcbfcaa
Diffstat (limited to 'sw/inc/IDocumentListsAccess.hxx')
-rw-r--r-- | sw/inc/IDocumentListsAccess.hxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sw/inc/IDocumentListsAccess.hxx b/sw/inc/IDocumentListsAccess.hxx index 5e0b9e3e3a68..1c072f73d524 100644 --- a/sw/inc/IDocumentListsAccess.hxx +++ b/sw/inc/IDocumentListsAccess.hxx @@ -29,17 +29,17 @@ class SwList; class IDocumentListsAccess { public: - virtual SwList* createList( String sListId, - const String sDefaultListStyleName ) = 0; - virtual void deleteList( const String sListId ) = 0; - virtual SwList* getListByName( const String sListId ) const = 0; + virtual SwList* createList( const OUString& rListId, + const OUString& rDefaultListStyleName ) = 0; + virtual void deleteList( const OUString& rListId ) = 0; + virtual SwList* getListByName( const OUString& rListId ) const = 0; - virtual SwList* createListForListStyle( const String sListStyleName ) = 0; - virtual SwList* getListForListStyle( const String sListStyleName ) const = 0; - virtual void deleteListForListStyle( const String sListStyleName ) = 0; + virtual SwList* createListForListStyle( const OUString& rListStyleName ) = 0; + virtual SwList* getListForListStyle( const OUString& rListStyleName ) const = 0; + virtual void deleteListForListStyle( const OUString& rListStyleName ) = 0; // #i91400# - virtual void trackChangeOfListStyleName( const String sListStyleName, - const String sNewListStyleName ) = 0; + virtual void trackChangeOfListStyleName( const OUString& rListStyleName, + const OUString& rNewListStyleName ) = 0; protected: virtual ~IDocumentListsAccess() {}; }; |