Commit aca5da7d authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: fix a warning about operator precedence

parent 4fd10f5e
...@@ -344,7 +344,7 @@ void AnimatedIcon::play( int loops, int interval ) ...@@ -344,7 +344,7 @@ void AnimatedIcon::play( int loops, int interval )
interval = 20; interval = 20;
} }
if( !mIdleFrame && ( mFrames.empty() | loops != 0 ) ) if( !mIdleFrame && ( mFrames.empty() | (loops != 0) ) )
{ {
#ifndef NDEBUG #ifndef NDEBUG
printf( "AnimatedIcon::play(): no frames to display" ); printf( "AnimatedIcon::play(): no frames to display" );
......
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