# HG changeset patch # User John W. Eaton # Date 1412883950 14400 # Node ID eb9b2160e87807a9b41cc54cbad1a19e31de50db # Parent eee862631953693a6cb133839e33db8d9d39b92d fix build problem with --enable-64 (bug #43319) * QtHandlesUtils.cc (makeImageFromCData): Ensure arguments to qMin have the same type. diff -r eee862631953 -r eb9b2160e878 libgui/graphics/QtHandlesUtils.cc --- a/libgui/graphics/QtHandlesUtils.cc Thu Oct 09 18:10:19 2014 +0200 +++ b/libgui/graphics/QtHandlesUtils.cc Thu Oct 09 15:45:50 2014 -0400 @@ -220,8 +220,8 @@ if (dv.length () == 3 && dv(2) == 3) { - int w = qMin (dv(1), width); - int h = qMin (dv(0), height); + int w = qMin (dv(1), static_cast