--- a/stif/TestScripter/src/TestScripter.cpp Mon Jun 21 22:45:06 2010 +0100
+++ b/stif/TestScripter/src/TestScripter.cpp Thu Jul 22 16:50:07 2010 +0100
@@ -3875,7 +3875,7 @@
User::Leave( KErrArgument ); // Error in parsing => Leave
}
// Convert idle time from milli to micro seconds
- idle = time * 1000.0;
+ idle = static_cast<TInt>( time * 1000.0);
if( idle < 0 )
{
@@ -3901,7 +3901,7 @@
}
// Convert active time from milli to micro seconds
- active = time * 1000.0;
+ active = static_cast<TInt>( time * 1000.0 );
if( active < 0 )
{
@@ -5166,5 +5166,4 @@
}
-
-// End of File
+// End of File