From kde-commits Thu Jun 30 21:56:51 2005 From: Andreas Silberstorff Date: Thu, 30 Jun 2005 21:56:51 +0000 To: kde-commits Subject: playground/multimedia/kalva Message-Id: <1120168611.286229.20907.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=112016862519726 SVN commit 430316 by silberstorff: Sorry, did use fmod two times in this source, so this is the same change as the last but for the second use of fmod (being very ashamed) M +1 -1 prefs.cpp --- trunk/playground/multimedia/kalva/prefs.cpp #430315:430316 @@ -272,7 +272,7 @@ if ( modw16 > 8 ) cropw += 16; kdDebug() << "cropw = " << cropw << endl; - double modh16 = fmod(exacth, 16); + double modh16 = std::fmod(exacth, 16); kdDebug() << "modh16 = " << modh16 << endl; double croph = exacth - modh16; if ( modh16 > 8 )