Kaydet (Commit) 45a771ef authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Avoid reserved identifiers

Change-Id: Ic2c7cc2a78e8e58c3ca28acd9b6a35ddaceeab60
üst 7b942947
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment