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()
delete notifier;
}
shell::MyProperty::MyProperty( const OUString& __PropertyName )
: PropertyName( __PropertyName )
shell::MyProperty::MyProperty( const OUString& thePropertyName )
: PropertyName( thePropertyName )
, Handle(-1)
, isNative(false)
, State(beans::PropertyState_AMBIGUOUS_VALUE)
......@@ -121,20 +121,20 @@ shell::MyProperty::MyProperty( const OUString& __Propert
// empty
}
shell::MyProperty::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 )
: PropertyName( __PropertyName ),
Handle( __Handle ),
isNative( __isNative ),
Typ( __Typ ),
Value( __Value ),
State( __State ),
Attributes( __Attributes )
shell::MyProperty::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 )
: PropertyName( thePropertyName ),
Handle( theHandle ),
isNative( theisNative ),
Typ( theTyp ),
Value( theValue ),
State( theState ),
Attributes( theAttributes )
{
// empty
}
......
......@@ -51,20 +51,20 @@ struct ltptr
}
};
typedef struct _LockInfo
struct LockInfo
{
rtl::Reference< NeonSession > xSession;
sal_Int32 nLastChanceToSendRefreshRequest;
_LockInfo()
LockInfo()
: nLastChanceToSendRefreshRequest( -1 ) {}
_LockInfo( rtl::Reference< NeonSession > const & _xSession,
LockInfo( rtl::Reference< NeonSession > const & _xSession,
sal_Int32 _nLastChanceToSendRefreshRequest )
: xSession( _xSession ),
nLastChanceToSendRefreshRequest( _nLastChanceToSendRefreshRequest ) {}
} LockInfo;
};
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