Browse Source

Remove redundant function

This helper function is useless after using `Path` class.
adaptive-webui-19844
Chocobo1 2 years ago
parent
commit
a59a6ce8e4
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
  1. 21
      src/app/application.cpp

21
src/app/application.cpp

@ -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…
Cancel
Save