Kaydet (Commit) 4fd7be20 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#707887 Uninitialized scalar field

Change-Id: I84c8748b7bcbf7a6aaf7aad34135a9af2428761e
üst 06024a58
...@@ -618,11 +618,13 @@ UICommandDescription::UICommandDescription( const Reference< XComponentContext > ...@@ -618,11 +618,13 @@ UICommandDescription::UICommandDescription( const Reference< XComponentContext >
if ( pIter != m_aUICommandsHashMap.end() ) if ( pIter != m_aUICommandsHashMap.end() )
pIter->second = m_xGenericUICommands; pIter->second = m_xGenericUICommands;
} }
UICommandDescription::UICommandDescription( const Reference< XComponentContext >& rxContext, bool ) : UICommandDescription::UICommandDescription(const Reference< XComponentContext >& rxContext, bool)
UICommandDescription_BASE(*static_cast<osl::Mutex *>(this)), : UICommandDescription_BASE(*static_cast<osl::Mutex *>(this))
m_xContext( rxContext ) , m_bConfigRead(false)
, m_xContext(rxContext)
{ {
} }
UICommandDescription::~UICommandDescription() UICommandDescription::~UICommandDescription()
{ {
osl::MutexGuard g(rBHelper.rMutex); osl::MutexGuard g(rBHelper.rMutex);
......
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