diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-09 20:19:14 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-10 18:32:16 +0100 |
commit | 45a771ef727585ceb8ebcd4b4627f3aa9bfa9b37 (patch) | |
tree | b42d4d904e74c747a0ae351e0a20a4b09538180b /ucb | |
parent | 7b9429473a68c3fbaac3685c6f1eb825bca97e27 (diff) |
Avoid reserved identifiers
Change-Id: Ic2c7cc2a78e8e58c3ca28acd9b6a35ddaceeab60
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/file/shell.hxx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ucb/source/ucp/file/shell.hxx b/ucb/source/ucp/file/shell.hxx index b6e2e05056ad..59f569608a6e 100644 --- a/ucb/source/ucp/file/shell.hxx +++ b/ucb/source/ucp/file/shell.hxx @@ -88,14 +88,14 @@ namespace fileaccess { sal_Int16 Attributes; public: MyProperty(); - explicit MyProperty( const OUString& __PropertyName ); - MyProperty( const bool& __isNative, - const OUString& __PropertyName, - const sal_Int32& __Handle, - const css::uno::Type& __Typ, - const css::uno::Any& __Value, - const css::beans::PropertyState& __State, - const sal_Int16& __Attributes ); + explicit MyProperty( const OUString& thePropertyName ); + MyProperty( const bool& theIsNative, + const OUString& thePropertyName, + const sal_Int32& theHandle, + const css::uno::Type& theTyp, + const css::uno::Any& theValue, + const css::beans::PropertyState& theState, + const sal_Int16& theAttributes ); ~MyProperty(); inline const bool& SAL_CALL IsNative() const; @@ -107,8 +107,8 @@ namespace fileaccess { inline const sal_Int16& SAL_CALL getAttributes() const; // The set* functions are declared const, because the key of "this" stays intact - inline void SAL_CALL setValue( const css::uno::Any& __Value ) const; - inline void SAL_CALL setState( const css::beans::PropertyState& __State ) const; + inline void SAL_CALL setValue( const css::uno::Any& theValue ) const; + inline void SAL_CALL setState( const css::beans::PropertyState& theState ) const; }; struct eMyProperty |