diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-09-01 20:26:27 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-09-01 20:39:19 +0100 |
commit | 6c5c0302f3624ec7c3b862c98d5514f29328bbe9 (patch) | |
tree | 9879fbad47b5957c279128f290c24da4f6832218 /include/svx/svdpagv.hxx | |
parent | 277b339371727134851da1b695d9d8d30889a961 (diff) |
XubString->OUString
Change-Id: I8bf16712cee985c1eeeea9e42479f22de2a43597
Diffstat (limited to 'include/svx/svdpagv.hxx')
-rw-r--r-- | include/svx/svdpagv.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svx/svdpagv.hxx b/include/svx/svdpagv.hxx index 2a485be7a8fc..d4de159c0796 100644 --- a/include/svx/svdpagv.hxx +++ b/include/svx/svdpagv.hxx @@ -119,8 +119,8 @@ private: void ImpInvalidateHelpLineArea(sal_uInt16 nNum) const; - void SetLayer(const String& rName, SetOfByte& rBS, sal_Bool bJa); - sal_Bool IsLayer(const String& rName, const SetOfByte& rBS) const; + void SetLayer(const OUString& rName, SetOfByte& rBS, bool bJa); + bool IsLayer(const OUString& rName, const SetOfByte& rBS) const; // Nachsehen, ob AktGroup noch Inserted ist. void CheckAktGroup(); @@ -195,8 +195,8 @@ public: Rectangle& MarkBound() { return aMarkBound; } Rectangle& MarkSnap() { return aMarkSnap; } - void SetLayerVisible(const String& rName, sal_Bool bShow = sal_True) { SetLayer(rName, aLayerVisi, bShow); if(!bShow) AdjHdl(); InvalidateAllWin(); } - sal_Bool IsLayerVisible(const String& rName) const { return IsLayer(rName, aLayerVisi); } + void SetLayerVisible(const OUString& rName, bool bShow = true) { SetLayer(rName, aLayerVisi, bShow); if(!bShow) AdjHdl(); InvalidateAllWin(); } + bool IsLayerVisible(const OUString& rName) const { return IsLayer(rName, aLayerVisi); } void SetLayerLocked(const String& rName, sal_Bool bLock = sal_True) { SetLayer(rName, aLayerLock, bLock); if(bLock) AdjHdl(); } sal_Bool IsLayerLocked(const String& rName) const { return IsLayer(rName,aLayerLock); } |