Fix missing declaration

This commit is contained in:
Jonas Kvinge 2020-04-23 21:50:50 +02:00
parent 9289394261
commit 49e2615d14

View File

@ -400,6 +400,7 @@ void RevealFileInFinder(QString const &path) {
#endif // Q_OS_MACOS
#ifdef Q_OS_WIN
void ShowFileInExplorer(QString const &path);
void ShowFileInExplorer(QString const &path) {
QProcess::execute("explorer.exe", QStringList() << "/select," << QDir::toNativeSeparators(path));
}