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

Qt: explicit sign conversion

parent 44cfdaa8
...@@ -163,7 +163,7 @@ void VideoWidget::SetSizing( unsigned int w, unsigned int h ) ...@@ -163,7 +163,7 @@ void VideoWidget::SetSizing( unsigned int w, unsigned int h )
This cause a small flicker. This cause a small flicker.
See #3621 See #3621
*/ */
if( size().width() == w && size().height() == h ) if( (unsigned)size().width() == w && (unsigned)size().height() == h )
updateGeometry(); updateGeometry();
sync(); sync();
} }
......
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