Stops loading the frame content
#include <WebFrame.h> virtual void stopLoading();
Stops the current load operation.
The stopLoading() method is often used in conjunction with the mainframe() method to stop loading content in the current frame.
case UI_BUTTON_STOP: debug_log("stopLoading\n"); webView->mainFrame()->stopLoading(); url_focus = 0; break;