Kaydet (Commit) 7d67fbd9 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Avoid reserved identifiers

Change-Id: I210133e82bc72dcb89da5f7700314ddcf6bee269
üst f2c2e7a7
...@@ -111,8 +111,8 @@ shell::UnqPathData::~UnqPathData() ...@@ -111,8 +111,8 @@ shell::UnqPathData::~UnqPathData()
delete notifier; delete notifier;
} }
shell::MyProperty::MyProperty( const OUString& __PropertyName ) shell::MyProperty::MyProperty( const OUString& thePropertyName )
: PropertyName( __PropertyName ) : PropertyName( thePropertyName )
, Handle(-1) , Handle(-1)
, isNative(false) , isNative(false)
, State(beans::PropertyState_AMBIGUOUS_VALUE) , State(beans::PropertyState_AMBIGUOUS_VALUE)
...@@ -121,20 +121,20 @@ shell::MyProperty::MyProperty( const OUString& __Propert ...@@ -121,20 +121,20 @@ shell::MyProperty::MyProperty( const OUString& __Propert
// empty // empty
} }
shell::MyProperty::MyProperty( const bool& __isNative, shell::MyProperty::MyProperty( const bool& theisNative,
const OUString& __PropertyName, const OUString& thePropertyName,
const sal_Int32& __Handle, const sal_Int32& theHandle,
const css::uno::Type& __Typ, const css::uno::Type& theTyp,
const css::uno::Any& __Value, const css::uno::Any& theValue,
const css::beans::PropertyState& __State, const css::beans::PropertyState& theState,
const sal_Int16& __Attributes ) const sal_Int16& theAttributes )
: PropertyName( __PropertyName ), : PropertyName( thePropertyName ),
Handle( __Handle ), Handle( theHandle ),
isNative( __isNative ), isNative( theisNative ),
Typ( __Typ ), Typ( theTyp ),
Value( __Value ), Value( theValue ),
State( __State ), State( theState ),
Attributes( __Attributes ) Attributes( theAttributes )
{ {
// empty // empty
} }
......
...@@ -51,20 +51,20 @@ struct ltptr ...@@ -51,20 +51,20 @@ struct ltptr
} }
}; };
typedef struct _LockInfo struct LockInfo
{ {
rtl::Reference< NeonSession > xSession; rtl::Reference< NeonSession > xSession;
sal_Int32 nLastChanceToSendRefreshRequest; sal_Int32 nLastChanceToSendRefreshRequest;
_LockInfo() LockInfo()
: nLastChanceToSendRefreshRequest( -1 ) {} : nLastChanceToSendRefreshRequest( -1 ) {}
_LockInfo( rtl::Reference< NeonSession > const & _xSession, LockInfo( rtl::Reference< NeonSession > const & _xSession,
sal_Int32 _nLastChanceToSendRefreshRequest ) sal_Int32 _nLastChanceToSendRefreshRequest )
: xSession( _xSession ), : xSession( _xSession ),
nLastChanceToSendRefreshRequest( _nLastChanceToSendRefreshRequest ) {} nLastChanceToSendRefreshRequest( _nLastChanceToSendRefreshRequest ) {}
} LockInfo; };
typedef std::map< NeonLock *, LockInfo, ltptr > LockInfoMap; typedef std::map< NeonLock *, LockInfo, ltptr > LockInfoMap;
......
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