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

Got Android to build with the standard NDK-r5. AU fix. Minor change to mac menu shortcuts.

This commit is contained in:
Julian Storer 2011-02-25 17:22:27 +00:00
parent 38559e98b7
commit e620c5279d
16 changed files with 304 additions and 325 deletions

View file

@ -625,18 +625,18 @@ void juce_updateMultiMonitorInfo (Array <Rectangle<int> >& monitorCoords, const
JUCE_JNI_CALLBACK (JuceAppActivity, setScreenSize, void, (JNIEnv* env, jobject activity,
jint screenWidth, jint screenHeight))
{
const bool isSystemInitialised = android.screenWidth != 0;
android.screenWidth = screenWidth;
android.screenHeight = screenHeight;
if (isSystemInitialised)
Desktop::getInstance().refreshMonitorSizes();
}
//==============================================================================
const Image juce_createIconForFile (const File& file)
{
Image image;
// TODO
return image;
return Image::null;
}
//==============================================================================