mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-23 00:47:21 -06:00
Remove misc::time_tToQString()
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user