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

WebBrowserComponent: Fix build issue on older linux platforms

Previously, building the DemoRunner on Ubuntu 18.04 failed due to a
missing type declaration.
This commit is contained in:
reuk 2024-10-08 18:38:09 +01:00
parent 77f3073d92
commit b52f5cff21

View file

@ -32,6 +32,11 @@
==============================================================================
*/
// This type isn't in the headers until v2.36
#if ! WEBKIT_CHECK_VERSION (2, 36, 0)
struct WebKitURISchemeResponse;
#endif
namespace juce
{