- Updated Changelog / Todo

- Fixed a title boldness in torrent properties
This commit is contained in:
Christophe Dumez 2007-04-02 13:22:48 +00:00
parent 95bc8e513a
commit ab1d664f07
4 changed files with 11 additions and 5 deletions

View file

@ -198,7 +198,7 @@ class misc : public QObject{
// Take a number of seconds and return an user-friendly
// time duration like "1d 2h 10m".
static QString userFriendlyDuration(const long int seconds){
if(seconds < 0){
if(seconds <= 0){
return QString::QString(tr("Unknown"));
}
if(seconds < 60){