Kaydet (Commit) 5d99890f authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#704132 Operands don't affect result

Change-Id: Ib2cf15d31231ff02645faae9d4a984112e5af795
üst dbd85e0e
...@@ -75,9 +75,9 @@ executeErrorDialog( ...@@ -75,9 +75,9 @@ executeErrorDialog(
break; break;
case task::InteractionClassification_INFO: case task::InteractionClassification_INFO:
if ((nButtonMask & 0x01F00000) == WB_DEF_OK) # define WB_DEF_BUTTONS (WB_DEF_OK | WB_DEF_CANCEL | WB_DEF_RETRY)
//TODO! missing win bit button mask define (want to ignore //(want to ignore any default button settings)...
// any default button settings)... if ((nButtonMask & WB_DEF_BUTTONS) == WB_DEF_OK)
xBox.reset(new InfoBox(pParent, xBox.reset(new InfoBox(pParent,
aText.makeStringAndClear())); aText.makeStringAndClear()));
else else
......
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