diff -Nru kde-style-bespin-0.1~svn100126/debian/changelog kde-style-bespin-0.1~svn100126/debian/changelog --- kde-style-bespin-0.1~svn100126/debian/changelog 2010-06-26 18:21:48.000000000 +0100 +++ kde-style-bespin-0.1~svn100126/debian/changelog 2010-09-21 13:18:49.000000000 +0100 @@ -1,3 +1,11 @@ +kde-style-bespin (0.1~svn100126-0ubuntu4) maverick; urgency=low + + * armel-qmax-fix: + - Fixes non existent call to qMax(qreal, double) on armel bug + by casting double arg to qreali (LP: #642117) + + -- Niall Creech Tue, 21 Sep 2010 13:18:37 +0100 + kde-style-bespin (0.1~svn100126-0ubuntu3) maverick; urgency=low * Add cmake to build-dependencies as kdelibs5-dev no longer depends on it. diff -Nru kde-style-bespin-0.1~svn100126/debian/patches/armel-qmax-fix kde-style-bespin-0.1~svn100126/debian/patches/armel-qmax-fix --- kde-style-bespin-0.1~svn100126/debian/patches/armel-qmax-fix 1970-01-01 01:00:00.000000000 +0100 +++ kde-style-bespin-0.1~svn100126/debian/patches/armel-qmax-fix 2010-09-21 13:05:41.000000000 +0100 @@ -0,0 +1,17 @@ +Author: Niall Creech +Description: Fixes non existent call to qMax(qreal, double) on armel bug + by casting double arg to qreal +Ubuntu-Bug: https://bugs.launchpad.net/ubuntu/+source/kde-style-bespin/+bug/642117 +Index: kde-style-bespin-0.1~svn100126/kwin/client.cpp +=================================================================== +--- kde-style-bespin-0.1~svn100126.orig/kwin/client.cpp 2010-09-21 13:03:24.212935548 +0100 ++++ kde-style-bespin-0.1~svn100126/kwin/client.cpp 2010-09-21 13:03:58.975749350 +0100 +@@ -789,7 +789,7 @@ + if (f > 0.9) + fnt.setStretch(qRound(fnt.stretch()*f)); + else +- shrink(fnt, qMax(f,0.75)); ++ shrink(fnt, qMax(f,qreal(0.75))); + } + p.setFont(fnt); + // =============== diff -Nru kde-style-bespin-0.1~svn100126/debian/patches/series kde-style-bespin-0.1~svn100126/debian/patches/series --- kde-style-bespin-0.1~svn100126/debian/patches/series 1970-01-01 01:00:00.000000000 +0100 +++ kde-style-bespin-0.1~svn100126/debian/patches/series 2010-09-21 13:03:11.000000000 +0100 @@ -0,0 +1 @@ +armel-qmax-fix