diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-07-05 16:25:03 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-07-07 20:00:16 +0000 |
commit | 009851223b5ced4ed2662af2e2ae81c0f9200e45 (patch) | |
tree | a8ab339589ea23b98513d394eabc4f135e69ccae /sc/inc/stlsheet.hxx | |
parent | 35b42a9d1282a92dbc9a7fbc51d279812070688c (diff) |
module svl: all String and some bool and related clean-up
Change-Id: I36eb559fa58dbe75384b7119c788af0048813aed
Reviewed-on: https://gerrit.libreoffice.org/4733
Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'sc/inc/stlsheet.hxx')
-rw-r--r-- | sc/inc/stlsheet.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/inc/stlsheet.hxx b/sc/inc/stlsheet.hxx index c66d53642b4e..28e4a9d04d01 100644 --- a/sc/inc/stlsheet.hxx +++ b/sc/inc/stlsheet.hxx @@ -51,17 +51,17 @@ public: ScStyleSheet( const ScStyleSheet& rStyle ); - virtual bool SetParent ( const String& rParentName ); + virtual bool SetParent ( const OUString& rParentName ); virtual SfxItemSet& GetItemSet (); virtual bool IsUsed () const; virtual bool HasFollowSupport () const; virtual bool HasParentSupport () const; - virtual const String& GetName() const; - virtual const String& GetParent() const; - virtual const String& GetFollow() const; + virtual const OUString& GetName() const; + virtual const OUString& GetParent() const; + virtual const OUString& GetFollow() const; - virtual bool SetName( const String& ); + virtual bool SetName( const OUString& ); void SetUsage( ScStyleSheet::Usage eUse ) const { eUsage = eUse; } @@ -71,10 +71,10 @@ public: protected: virtual ~ScStyleSheet(); - ScStyleSheet( const String& rName, + ScStyleSheet( const OUString& rName, ScStyleSheetPool& rPool, SfxStyleFamily eFamily, - sal_uInt16 nMask ); + sal_uInt16 nMask ); virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ); }; |