summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2012-12-01 14:06:57 +0100
committerJulien Nabet <serval2412@yahoo.fr>2012-12-01 14:09:19 +0100
commit1c6b63fa9aac2a80ca952e98678e186b9097db50 (patch)
tree399579da23e32006720f6a0bb6dacf2720b89309 /sd
parent4cdce3d614eb9850e3f4596a5233464e8b4d5163 (diff)
WaE : declaration of ‘bHidden’ shadows a member of 'this'
Change-Id: I524691b2f27ac1d57a1a1704b12aed44fb326c16
Diffstat (limited to 'sd')
-rw-r--r--sd/source/core/stlsheet.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/core/stlsheet.cxx b/sd/source/core/stlsheet.cxx
index 13d1a5e2738d..570516412e43 100644
--- a/sd/source/core/stlsheet.cxx
+++ b/sd/source/core/stlsheet.cxx
@@ -1032,12 +1032,12 @@ sal_Bool SAL_CALL SdStyleSheet::isHidden() throw(RuntimeException)
return IsHidden();
}
-void SAL_CALL SdStyleSheet::setHidden( sal_Bool bHidden ) throw(RuntimeException)
+void SAL_CALL SdStyleSheet::setHidden( sal_Bool rbHidden ) throw(RuntimeException)
{
SolarMutexGuard aGuard;
throwIfDisposed();
- return SetHidden( bHidden );
+ return SetHidden( rbHidden );
}
// --------------------------------------------------------------------