summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ucb/source/ucp/file/filinl.hxx8
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