void WebBrowserComponent::reloadLastURL() { if (lastURL.isNotEmpty()) { goToURL (lastURL, &lastHeaders, &lastPostData); lastURL.clear(); } }
void WebBrowserComponent::reloadLastURL() { if (lastURL.isNotEmpty()) { goToURL (lastURL, &lastHeaders, lastPostData.getSize() == 0 ? nullptr : &lastPostData); lastURL.clear(); } }
// This method gets called when the browser is requested to launch a new window void newWindowAttemptingToLoad (const String& newURL) override { // We'll just load the URL into the main window goToURL (newURL); }
void Action_GoBuyFullVersion(void* tag) { goToURL("market://details?id=net.fabiensanglard.shmup"); }