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

bool improvements

Change-Id: I74db1d1b8250a6832fc68a6856912713b1d8944b
üst d5b01ac2
......@@ -147,7 +147,7 @@ void XSecController::createXSecComponent( )
xMCF->createInstanceWithContext( sXMLSignature, mxCtx ),
cssu::UNO_QUERY );
bool bSuccess = (0!=m_xXMLSignature.is());
bool bSuccess = m_xXMLSignature.is();
if ( bSuccess )
/*
* XMLSignature created successfully.
......@@ -158,7 +158,7 @@ void XSecController::createXSecComponent( )
cssu::UNO_QUERY );
}
bSuccess &= (0!=m_xXMLDocumentWrapper.is());
bSuccess &= m_xXMLDocumentWrapper.is();
if ( bSuccess )
/*
* XMLDocumentWrapper created successfully.
......@@ -169,7 +169,7 @@ void XSecController::createXSecComponent( )
cssu::UNO_QUERY );
}
bSuccess &= (0!=m_xSAXEventKeeper.is());
bSuccess &= m_xSAXEventKeeper.is();
if (bSuccess)
/*
......
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