Fix bad #ifdef, make ANSI compliant

`#elif  LMMS_BUILD_APPLE` is not correct, it should be `#elif defined(LMMS_BUILD_APPLE)`
This commit is contained in:
Tres Finocchiaro
2014-09-08 11:24:39 -04:00
parent adc134bbca
commit e17e84266d

View File

@@ -133,7 +133,7 @@ MainWindow::MainWindow() :
sideBar->appendTab( new FileBrowser( root_paths.join( "*" ), "*",
#ifdef LMMS_BUILD_WIN32
tr( "My computer" ),
#elif LMMS_BUILD_APPLE
#elif defined(LMMS_BUILD_APPLE)
tr( "Volumes" ),
#else
tr( "Root directory" ),