1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-04 03:40:07 +00:00

Removed the initialiseJuce_NonGUI() and shutdownJuce_NonGUI() methods - these aren't needed any more. Removed some old MidiOutput methods which weren't cross-platform. OpenGLComponent updates. Extra DropShadower safety.

This commit is contained in:
Julian Storer 2011-04-22 22:47:58 +01:00
parent e159587a9b
commit 328cc11713
44 changed files with 1416 additions and 756 deletions

View file

@ -187,11 +187,11 @@ void FileChooser::showPlatformDialog (Array<File>& results, const String& title_
bi.lpszTitle = title.toWideCharPointer();
bi.lParam = (LPARAM) &info;
bi.lpfn = browseCallbackProc;
#ifdef BIF_USENEWUI
#ifdef BIF_USENEWUI
bi.ulFlags = BIF_USENEWUI | BIF_VALIDATE;
#else
#else
bi.ulFlags = 0x50;
#endif
#endif
LPITEMIDLIST list = SHBrowseForFolder (&bi);