1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-15 06:52:34 +02:00

Remove no longer needed openLicenceFolder

This commit is contained in:
kelteseth 2018-09-29 11:39:20 +02:00
parent d371f4b45e
commit 97a4a7037e
2 changed files with 0 additions and 10 deletions

View File

@ -31,12 +31,3 @@ void QMLUtilities::openFolderInExplorer(QString url)
explorer.startDetached();
}
void QMLUtilities::openLicenceFolder()
{
QProcess explorer;
QStringList args;
args.append(QDir::toNativeSeparators(QCoreApplication::applicationDirPath()+ "/legal"));
explorer.setProgram("explorer.exe");
explorer.setArguments(args);
explorer.startDetached();
}

View File

@ -29,7 +29,6 @@ public slots:
void setNavigation(QString nav);
void setToggleWallpaperConfiguration();
void openFolderInExplorer(QString url);
void openLicenceFolder();
QString fixWindowsPath(QString url);
};