V732. Unary minus operator does not modify a bool type value.
V732 Unary minus operator does not modify a bool type variable. Consider using the '!' operator. modern_docking.cpp 275
typedef struct tagCLUIDATA
{
....
BOOL fDocked;
....
} CLUIDATA;
int Docking_ProcessWindowMessage(WPARAM wParam,LPARAM lParam)
{
....
if ((msg->wParam && g_CluiData.fDocked<0) ||
(!msg->wParam && g_CluiData.fDocked>0))
g_CluiData.fDocked=-g_CluiData.fDocked;
....
}
V732 Unary minus operator does not modify a bool type value. Consider using the '!' operator. kis_equalizer_slider.cpp 75
QRect KisEqualizerSlider::Private::boundingRect() const
{
QRect bounds = q->rect().adjusted(0, 0, -isRightmost, -1);
return bounds;
}
Similar errors can be found in some other places:
If you feel like the New Year just came, and you missed the first half of January, then all this ...