mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-27 08:19:30 +08:00
Remove redundant function
This helper function is useless after using `Path` class.
This commit is contained in:
parent
189514c6de
commit
a59a6ce8e4
@ -324,15 +324,6 @@ void Application::processMessage(const QString &message)
|
|||||||
|
|
||||||
void Application::runExternalProgram(const BitTorrent::Torrent *torrent) const
|
void Application::runExternalProgram(const BitTorrent::Torrent *torrent) const
|
||||||
{
|
{
|
||||||
#if defined(Q_OS_WIN)
|
|
||||||
const auto chopPathSep = [](const QString &str) -> QString
|
|
||||||
{
|
|
||||||
if (str.endsWith(u'\\'))
|
|
||||||
return str.mid(0, (str.length() -1));
|
|
||||||
return str;
|
|
||||||
};
|
|
||||||
#endif
|
|
||||||
|
|
||||||
QString program = Preferences::instance()->getAutoRunProgram().trimmed();
|
QString program = Preferences::instance()->getAutoRunProgram().trimmed();
|
||||||
|
|
||||||
for (int i = (program.length() - 2); i >= 0; --i)
|
for (int i = (program.length() - 2); i >= 0; --i)
|
||||||
@ -347,18 +338,10 @@ void Application::runExternalProgram(const BitTorrent::Torrent *torrent) const
|
|||||||
program.replace(i, 2, QString::number(torrent->filesCount()));
|
program.replace(i, 2, QString::number(torrent->filesCount()));
|
||||||
break;
|
break;
|
||||||
case u'D':
|
case u'D':
|
||||||
#if defined(Q_OS_WIN)
|
|
||||||
program.replace(i, 2, chopPathSep(torrent->savePath().toString()));
|
|
||||||
#else
|
|
||||||
program.replace(i, 2, torrent->savePath().toString());
|
program.replace(i, 2, torrent->savePath().toString());
|
||||||
#endif
|
|
||||||
break;
|
break;
|
||||||
case u'F':
|
case u'F':
|
||||||
#if defined(Q_OS_WIN)
|
|
||||||
program.replace(i, 2, chopPathSep(torrent->contentPath().toString()));
|
|
||||||
#else
|
|
||||||
program.replace(i, 2, torrent->contentPath().toString());
|
program.replace(i, 2, torrent->contentPath().toString());
|
||||||
#endif
|
|
||||||
break;
|
break;
|
||||||
case u'G':
|
case u'G':
|
||||||
program.replace(i, 2, torrent->tags().join(u","_qs));
|
program.replace(i, 2, torrent->tags().join(u","_qs));
|
||||||
@ -379,11 +362,7 @@ void Application::runExternalProgram(const BitTorrent::Torrent *torrent) const
|
|||||||
program.replace(i, 2, torrent->name());
|
program.replace(i, 2, torrent->name());
|
||||||
break;
|
break;
|
||||||
case u'R':
|
case u'R':
|
||||||
#if defined(Q_OS_WIN)
|
|
||||||
program.replace(i, 2, chopPathSep(torrent->rootPath().toString()));
|
|
||||||
#else
|
|
||||||
program.replace(i, 2, torrent->rootPath().toString());
|
program.replace(i, 2, torrent->rootPath().toString());
|
||||||
#endif
|
|
||||||
break;
|
break;
|
||||||
case u'T':
|
case u'T':
|
||||||
program.replace(i, 2, torrent->currentTracker());
|
program.replace(i, 2, torrent->currentTracker());
|
||||||
|
Loading…
Reference in New Issue
Block a user