Kaydet (Commit) 0b373b3e authored tarafından Ariel Constenla-Haile's avatar Ariel Constenla-Haile

Silence warning C4706

üst 66710ce4
......@@ -320,7 +320,7 @@ static sal_Bool Impl_ExistURLInMenu(
{
sal_Bool bValidFallback( sal_False );
sal_uInt16 nCount( 0 );
if ( rPopupMenu.is() && ( nCount = rPopupMenu->getItemCount() ) && sURL.getLength() )
if ( rPopupMenu.is() && ( nCount = rPopupMenu->getItemCount() ) != 0 && sURL.getLength() )
{
for ( sal_uInt16 n = 0; n < nCount; ++n )
{
......
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