void WebBrowserComponent::reloadLastURL()
{
    if (lastURL.isNotEmpty())
    {
        goToURL (lastURL, &lastHeaders, &lastPostData);
        lastURL.clear();
    }
}
예제 #2
0
void WebBrowserComponent::reloadLastURL()
{
    if (lastURL.isNotEmpty())
    {
        goToURL (lastURL, &lastHeaders, lastPostData.getSize() == 0 ? nullptr : &lastPostData);
        lastURL.clear();
    }
}
예제 #3
0
 // 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);
 }
예제 #4
0
파일: menu.c 프로젝트: shanfl/Shmup
void Action_GoBuyFullVersion(void* tag)
{
    goToURL("market://details?id=net.fabiensanglard.shmup");
}