fhackenberger / ktikz

KtikZ provides a nice user interface for making pictures using TikZ.
Other
350 stars 34 forks source link

app/configeditorwidget.cpp:222: suspicious expression ? #15

Closed dcb314 closed 6 years ago

dcb314 commented 6 years ago

ktikz-0.11/app/configeditorwidget.cpp:222:16: warning: '~' on an expression of type bool [-Wbool-operation]

Source code is

if(Q_LIKELY( ~b) ) // true when the widget is initialized...

Maybe better code

if(Q_LIKELY( !b) ) // true when the widget is initialized...
gprud commented 6 years ago

My mistake, Thanks! (fixed in branch master)