1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-30 02:50:05 +00:00

Android development and modal loop elimination.

This commit is contained in:
Julian Storer 2011-02-16 11:29:13 +00:00
parent ef71999349
commit 60e3ff8f5a
22 changed files with 893 additions and 687 deletions

View file

@ -126,6 +126,7 @@ FileChooserDialogBox::~FileChooserDialogBox()
}
//==============================================================================
#if JUCE_MODAL_LOOPS_PERMITTED
bool FileChooserDialogBox::show (int w, int h)
{
return showAt (-1, -1, w, h);
@ -155,6 +156,7 @@ bool FileChooserDialogBox::showAt (int x, int y, int w, int h)
setVisible (false);
return ok;
}
#endif
void FileChooserDialogBox::centreWithDefaultSize (Component* componentToCentreAround)
{