Fixes to the About dialog & add the SystemInfo dialog.

Also fix the build on Mac OS X.
This commit is contained in:
Augustin Cavalier
2014-10-25 09:21:05 -04:00
parent 51700a2b68
commit 69cd8229d8
13 changed files with 296 additions and 67 deletions

View File

@ -8,7 +8,11 @@
#include "Common/CommonTypes.h"
// Shorter version of QStringLiteral(str)
// Use this to encapsulate ASCII string literals
#define SL(str) QStringLiteral(str)
// Use this to encapsulate string constants and functions that
// return "char*"s
#define SC(str) QString::fromLatin1(str)
QString NiceSizeFormat(s64 size);