Fix compile

This commit is contained in:
Steve Checkoway
2004-06-11 05:31:35 +00:00
parent e80b8885db
commit ae65e34dbd
3 changed files with 6 additions and 8 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ void Dialog::Init()
if( !DriversToTry[i].CompareNoCase("Win32") ) g_pImpl = new DialogDriver_Win32;
#endif
#if defined(HAVE_DIALOG_COCOA)
if( !DriversToTry[i].CompareNoCase("Cocoa") ) g_pImpl = new LoadingWindow_Cocoa;
if( !DriversToTry[i].CompareNoCase("Cocoa") ) g_pImpl = new DialogDriver_Cocoa;
#endif
if( !DriversToTry[i].CompareNoCase("Null") ) g_pImpl = new DialogDriverNull;
}