summaryrefslogtreecommitdiffstats
path: root/karm/karmutility.cpp
blob: 39b1865a83ca1dfe7740887532584b0b7b584f92 (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"

TQString formatTime( long minutes, bool decimal )
{
  TQString time;
  if ( decimal ) {
    time.sprintf("%.2f", minutes / 60.0);
    time.replace( '.', TDEGlobal::locale()->decimalSymbol() );
  }
  else time.sprintf("%s%ld:%02ld",
    (minutes < 0) ? TDEGlobal::locale()->negativeSign().utf8().data() : "",
    labs(minutes / 60), labs(minutes % 60));
  return time;
}

#endif // KARM_UTILITY_H