Remove misc::time_tToQString()

This commit is contained in:
Christophe Dumez
2012-02-18 15:37:51 +02:00
parent ed468083c5
commit 0c9dbc15f9
3 changed files with 3 additions and 10 deletions

View File

@@ -72,7 +72,9 @@ QString QTorrentHandle::name() const {
QString QTorrentHandle::creation_date() const {
#if LIBTORRENT_VERSION_MINOR > 15
boost::optional<time_t> t = torrent_handle::get_torrent_info().creation_date();
return misc::time_tToQString(t);
if (t)
return QDateTime::fromTime_t(*t).toString(Qt::DefaultLocaleLongDate);
return tr("Unknown");
#else
boost::optional<boost::posix_time::ptime> boostDate = torrent_handle::get_torrent_info().creation_date();
return misc::boostTimeToQString(boostDate);