diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-30 15:03:51 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-09-05 08:54:16 +0200 |
commit | bfd3c3069f1d89a125bce4e0fcebf3636fb5f8af (patch) | |
tree | d1dad7a95f07354328f9656da5f25100895bfa87 /include/svx/svdpagv.hxx | |
parent | 10f96c28ba736029aee431307f70f07e5c0269dc (diff) |
convert include/svx/svdpagv.hxx from String to OUString
Change-Id: I4cc2a34074f536327f4eb10e30c2d8f505409547
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 d4de159c0796..8b11872172c3 100644 --- a/include/svx/svdpagv.hxx +++ b/include/svx/svdpagv.hxx @@ -198,11 +198,11 @@ public: 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); } + void SetLayerLocked(const OUString& rName, sal_Bool bLock = sal_True) { SetLayer(rName, aLayerLock, bLock); if(bLock) AdjHdl(); } + sal_Bool IsLayerLocked(const OUString& rName) const { return IsLayer(rName,aLayerLock); } - void SetLayerPrintable(const String& rName, sal_Bool bPrn = sal_True) { SetLayer(rName, aLayerPrn, bPrn); } - sal_Bool IsLayerPrintable(const String& rName) const { return IsLayer(rName, aLayerPrn); } + void SetLayerPrintable(const OUString& rName, sal_Bool bPrn = sal_True) { SetLayer(rName, aLayerPrn, bPrn); } + sal_Bool IsLayerPrintable(const OUString& rName) const { return IsLayer(rName, aLayerPrn); } // PV stellt eine RefPage oder eine SubList eines RefObj dar oder Model ist ReadOnly sal_Bool IsReadOnly() const; |