blob: 1663b178c8d45784288b60622f6accda5253572e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef KARM_UTILITY_H
#define KARM_UTILITY_H
#include <stdlib.h>
#include <kglobal.h>
#include <klocale.h>
#include "karmutility.h"
QString formatTime( long minutes, bool decimal )
{
QString time;
if ( decimal ) {
time.sprintf("%.2f", minutes / 60.0);
time.replace( '.', KGlobal::locale()->decimalSymbol() );
}
else time.sprintf("%s%ld:%02ld",
(minutes < 0) ? KGlobal::locale()->negativeSign().utf8().data() : "",
labs(minutes / 60), labs(minutes % 60));
return time;
}
#endif // KARM_UTILITY_H
|