diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-09 20:18:28 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-10 18:32:15 +0100 |
commit | 4a296a0548c0e7ac76dca1f0fbd8e67be1f2e76c (patch) | |
tree | 014908642db5d3517b81ada1cf5122422594db7e /ucb | |
parent | f9202971b4bd7cf21fe56fb59e26675c0cc28cc1 (diff) |
Avoid reserved identifiers
Change-Id: I75158ff7588452f38306b0bed351a6532b9c8d1f
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/file/filinl.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ucb/source/ucp/file/filinl.hxx b/ucb/source/ucp/file/filinl.hxx index 003f11b325c8..224353c3acd1 100644 --- a/ucb/source/ucp/file/filinl.hxx +++ b/ucb/source/ucp/file/filinl.hxx @@ -43,13 +43,13 @@ inline const sal_Int16& SAL_CALL shell::MyProperty::getAttributes() const { return Attributes; } -inline void SAL_CALL shell::MyProperty::setValue( const css::uno::Any& __Value ) const +inline void SAL_CALL shell::MyProperty::setValue( const css::uno::Any& theValue ) const { - const_cast<MyProperty*>(this)->Value = __Value; + const_cast<MyProperty*>(this)->Value = theValue; } -inline void SAL_CALL shell::MyProperty::setState( const css::beans::PropertyState& __State ) const +inline void SAL_CALL shell::MyProperty::setState( const css::beans::PropertyState& theState ) const { - const_cast<MyProperty*>(this)->State = __State; + const_cast<MyProperty*>(this)->State = theState; } #endif |