Basic support for building as UWP app

This commit is contained in:
Cameron Gutman
2019-03-13 01:02:04 -07:00
parent b1de8b703b
commit 9288cfa684
4 changed files with 32 additions and 15 deletions

View File

@@ -59,7 +59,7 @@ public:
void showMessage(QString message, MessageType type) const
{
#if defined(Q_OS_WIN)
#if defined(Q_OS_WIN32)
UINT flags = MB_OK | MB_TOPMOST | MB_SETFOREGROUND;
flags |= (type == Info ? MB_ICONINFORMATION : MB_ICONERROR);
QString title = "Moonlight";