summaryrefslogtreecommitdiff
path: root/reportdesign/inc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-22 09:37:31 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-22 09:37:31 +0200
commitfd2ba0d7cd3598f329bd18f96c0716b68e396378 (patch)
tree350ba8c7a6c41073ef7e0d86b8463a9d2fbefd2f /reportdesign/inc
parent1862152330422fd34ee2ecc97f4f948d77fd00db (diff)
Avoid reserved identifiers
Change-Id: Ifccf58c748ca8189949efeecc1ac7329a07be1f7
Diffstat (limited to 'reportdesign/inc')
-rw-r--r--reportdesign/inc/ReportDefinition.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/reportdesign/inc/ReportDefinition.hxx b/reportdesign/inc/ReportDefinition.hxx
index 542bcb0ff907..e0a437479aca 100644
--- a/reportdesign/inc/ReportDefinition.hxx
+++ b/reportdesign/inc/ReportDefinition.hxx
@@ -102,27 +102,27 @@ namespace reportdesign
,css::uno::Reference< css::report::XSection>& _member);
template <typename T> void set( const OUString& _sProperty
- ,const T& _Value
+ ,const T& Value
,T& _member)
{
BoundListeners l;
{
::osl::MutexGuard aGuard(m_aMutex);
- prepareSet(_sProperty, css::uno::makeAny(_member), css::uno::makeAny(_Value), &l);
- _member = _Value;
+ prepareSet(_sProperty, css::uno::makeAny(_member), css::uno::makeAny(Value), &l);
+ _member = Value;
}
l.notify();
}
void set( const OUString& _sProperty
- ,bool _Value
+ ,bool Value
,bool& _member)
{
BoundListeners l;
{
::osl::MutexGuard aGuard(m_aMutex);
- prepareSet(_sProperty, css::uno::makeAny(_member), css::uno::makeAny(_Value), &l);
- _member = _Value;
+ prepareSet(_sProperty, css::uno::makeAny(_member), css::uno::makeAny(Value), &l);
+ _member = Value;
}
l.notify();
}