WaE : declaration of ‘bHidden’ shadows a member of 'this'

Change-Id: I524691b2f27ac1d57a1a1704b12aed44fb326c16
diff --git a/sd/source/core/stlsheet.cxx b/sd/source/core/stlsheet.cxx
index 13d1a5e..5705164 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 );
}

// --------------------------------------------------------------------