Fix a OS X build error (missing a defined())

This commit is contained in:
Jan Dalheimer 2014-11-11 15:43:32 +01:00 committed by Petr Mrázek
parent 41bd2a6634
commit 2315bf7bc5

View File

@ -383,7 +383,7 @@ void MultiMC::initGlobalSettings(bool test_mode)
QString defaultMonospace;
#ifdef Q_OS_WIN32
defaultMonospace = "Lucida Console";
#elif Q_OS_MAC
#elif defined(Q_OS_MAC)
defaultMonospace = "Menlo";
#else
defaultMonospace = "Monospace";