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:
parent
d38057b304
commit
aabc0dbe6e
4 changed files with 6 additions and 10 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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&) {}
|
||||
|
|
|
|||
|
|
@ -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&) {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue