]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/webview/webview.cpp
Correctly initialise ref count in custom scheme class factory.
[wxWidgets.git] / samples / webview / webview.cpp
index 17dca1d8c592cdbc5158d168a04a624d7bd2b366..4f679f872b3b6140fe09ce569874a922d72ebccc 100644 (file)
     #include "wx/wx.h"
 #endif
 
+#if !wxUSE_WEBVIEW_WEBKIT && !wxUSE_WEBVIEW_IE
+#error "A wxWebView backend is required by this sample"
+#endif
+
 #include "wx/artprov.h"
 #include "wx/notifmsg.h"
 #include "wx/settings.h"
@@ -63,6 +67,7 @@ class WebFrame : public wxFrame
 {
 public:
     WebFrame();
+    ~WebFrame();
 
     void OnAnimationTimer(wxTimerEvent& evt);
     void UpdateState();
@@ -353,6 +358,11 @@ WebFrame::WebFrame() : wxFrame(NULL, wxID_ANY, "wxWebView Sample")
             wxCommandEventHandler(WebFrame::OnLoadScheme),  NULL, this );
 }
 
+WebFrame::~WebFrame()
+{
+    delete m_tools_menu;
+}
+
 void WebFrame::OnAnimationTimer(wxTimerEvent& WXUNUSED(evt))
 {
     m_animation_angle += 15;