Avoid reserved identifiers

Change-Id: I75158ff7588452f38306b0bed351a6532b9c8d1f
This commit is contained in:
Stephan Bergmann
2016-03-09 20:18:28 +01:00
parent f9202971b4
commit 4a296a0548

View File

@@ -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