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/kamoso/+bug/642117
Index: kamoso-1.0.5/src/kamoso.cpp
===================================================================
--- kamoso-1.0.5.orig/src/kamoso.cpp	2010-09-19 12:55:41.645143085 +0100
+++ kamoso-1.0.5/src/kamoso.cpp	2010-09-19 12:56:00.096505341 +0100
@@ -332,7 +332,7 @@
 void Kamoso::startCountdown(qreal minimumTime)
 {
 	qDebug() << Settings::photoTime();
-	int time = qMax(minimumTime, 1000.*Settings::photoTime());
+	int time = qMax(minimumTime, qreal(1000.*Settings::photoTime()));
 	
 	m_countdown->start(time);
 	//hidding all non-semaphore widgets
