mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-08-16 16:36:01 +00:00
parent
48bcd725c9
commit
c93f7e7385
@ -59,13 +59,6 @@ public:
|
|||||||
|
|
||||||
void showMessage(QString message, MessageType type) const
|
void showMessage(QString message, MessageType type) const
|
||||||
{
|
{
|
||||||
#if defined(Q_OS_WIN32)
|
|
||||||
UINT flags = MB_OK | MB_TOPMOST | MB_SETFOREGROUND;
|
|
||||||
flags |= (type == Info ? MB_ICONINFORMATION : MB_ICONERROR);
|
|
||||||
QString title = "Moonlight";
|
|
||||||
MessageBoxW(nullptr, reinterpret_cast<const wchar_t *>(message.utf16()),
|
|
||||||
reinterpret_cast<const wchar_t *>(title.utf16()), flags);
|
|
||||||
#endif
|
|
||||||
message = message.endsWith('\n') ? message : message + '\n';
|
message = message.endsWith('\n') ? message : message + '\n';
|
||||||
fputs(qPrintable(message), type == Info ? stdout : stderr);
|
fputs(qPrintable(message), type == Info ? stdout : stderr);
|
||||||
}
|
}
|
||||||
|
13
app/main.cpp
13
app/main.cpp
@ -588,12 +588,6 @@ int main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
GlobalCommandLineParser parser;
|
|
||||||
GlobalCommandLineParser::ParseResult commandLineParserResult = parser.parse(app.arguments());
|
|
||||||
switch (commandLineParserResult) {
|
|
||||||
case GlobalCommandLineParser::ListRequested:
|
|
||||||
// Don't log to the console since it will jumble the command output
|
|
||||||
s_SuppressVerboseOutput = true;
|
|
||||||
#ifdef Q_OS_WIN32
|
#ifdef Q_OS_WIN32
|
||||||
// If we don't have stdout or stderr handles (which will normally be the case
|
// If we don't have stdout or stderr handles (which will normally be the case
|
||||||
// since we're a /SUBSYSTEM:WINDOWS app), attach to our parent console and use
|
// since we're a /SUBSYSTEM:WINDOWS app), attach to our parent console and use
|
||||||
@ -613,6 +607,13 @@ int main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
GlobalCommandLineParser parser;
|
||||||
|
GlobalCommandLineParser::ParseResult commandLineParserResult = parser.parse(app.arguments());
|
||||||
|
switch (commandLineParserResult) {
|
||||||
|
case GlobalCommandLineParser::ListRequested:
|
||||||
|
// Don't log to the console since it will jumble the command output
|
||||||
|
s_SuppressVerboseOutput = true;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user