1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Couple of minor linux + android fixes.

This commit is contained in:
jules 2011-11-29 15:11:14 +00:00
parent d38057b304
commit aabc0dbe6e
4 changed files with 6 additions and 10 deletions

View file

@ -219,7 +219,7 @@ Typeface::Ptr Typeface::createSystemTypefaceFor (const Font& font)
return new AndroidTypeface (font);
}
bool GlyphLayout::createNativeLayout (const AttributedString&)
bool TextLayout::createNativeLayout (const AttributedString&)
{
return false;
}

View file

@ -543,7 +543,7 @@ Typeface::Ptr Font::getDefaultTypefaceForFont (const Font& font)
return Typeface::createSystemTypefaceFor (f);
}
bool GlyphLayout::createNativeLayout (const AttributedString&)
bool TextLayout::createNativeLayout (const AttributedString&)
{
return false;
}

View file

@ -109,7 +109,5 @@ void WebBrowserComponent::visibilityChanged()
checkWindowAssociation();
}
bool WebBrowserComponent::pageAboutToLoad (const String& url)
{
return true;
}
bool WebBrowserComponent::pageAboutToLoad (const String&) { return true; }
void WebBrowserComponent::pageFinishedLoading (const String&) {}

View file

@ -114,7 +114,5 @@ void WebBrowserComponent::visibilityChanged()
checkWindowAssociation();
}
bool WebBrowserComponent::pageAboutToLoad (const String& url)
{
return true;
}
bool WebBrowserComponent::pageAboutToLoad (const String&) { return true; }
void WebBrowserComponent::pageFinishedLoading (const String&) {}