Author: Niall Creech <niallcreech@gmail.com>
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);
         // ===============
