macOS/Windows: fix compiler warning

pull/2/head
selsta 5 years ago
parent a267712d10
commit 738e802f3c
Signed by untrusted user: selsta
GPG Key ID: 2EA0A99A8B07AE5E

@ -192,7 +192,9 @@ int main(int argc, char *argv[])
qWarning().noquote() << "app startd" << "(log: " + logPath + ")";
// Desktop entry
#ifdef Q_OS_LINUX
registerXdgMime(app);
#endif
IPC *ipc = new IPC(&app);
QStringList posArgs = parser.positionalArguments();

@ -67,6 +67,7 @@ QString getAccountName(){
return accountName;
}
#ifdef Q_OS_LINUX
QString xdgMime(QApplication &app){
return QString(
"[Desktop Entry]\n"
@ -88,7 +89,6 @@ QString xdgMime(QApplication &app){
}
void registerXdgMime(QApplication &app){
#ifdef Q_OS_LINUX
// Register desktop entry
// - MacOS handled via Info.plist
// - Windows handled in the installer by rbrunner7
@ -111,8 +111,8 @@ void registerXdgMime(QApplication &app){
#endif
fileWrite(filePath, mime);
#endif
}
#endif
QString randomUserAgent(){
QStringList urand;

@ -37,8 +37,10 @@ bool fileExists(QString path);
QByteArray fileOpen(QString path);
bool fileWrite(QString path, QString data);
QString getAccountName();
#ifdef Q_OS_LINUX
QString xdgMime(QApplication &app);
void registerXdgMime(QApplication &app);
#endif
const static QRegExp reURI = QRegExp("^\\w+:\\/\\/([\\w+\\-?\\-_\\-=\\-&]+)");
QString randomUserAgent();