From 4a296a0548c0e7ac76dca1f0fbd8e67be1f2e76c Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 9 Mar 2016 20:18:28 +0100 Subject: Avoid reserved identifiers Change-Id: I75158ff7588452f38306b0bed351a6532b9c8d1f --- ucb/source/ucp/file/filinl.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ucb') 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(this)->Value = __Value; + const_cast(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(this)->State = __State; + const_cast(this)->State = theState; } #endif -- cgit