]> git.saurik.com Git - wxWidgets.git/commitdiff
Use correct reload flags on all platforms to avoid compilation errors
authorSteve Lamerton <steve.lamerton@gmail.com>
Fri, 6 May 2011 13:37:01 +0000 (13:37 +0000)
committerSteve Lamerton <steve.lamerton@gmail.com>
Fri, 6 May 2011 13:37:01 +0000 (13:37 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@67711 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/gtk/webview.h
include/wx/msw/webviewie.h
include/wx/osx/webview.h
include/wx/webview.h

index 395d7ed723605719495d8d1ffee2e94fc78c7b97..9c45fd88262fc894a1345c8b3c23de37a84919ba 100644 (file)
@@ -67,7 +67,7 @@ public:
     virtual void LoadUrl(const wxString& url);
     virtual void GoBack();
     virtual void GoForward();
     virtual void LoadUrl(const wxString& url);
     virtual void GoBack();
     virtual void GoForward();
-    virtual void Reload(wxWebViewReloadFlags flags = 0);
+    virtual void Reload(wxWebViewReloadFlags flags = wxWEB_VIEW_RELOAD_DEFAULT);
     virtual bool CanGoBack();
     virtual bool CanGoForward();
     virtual wxString GetCurrentURL();
     virtual bool CanGoBack();
     virtual bool CanGoForward();
     virtual wxString GetCurrentURL();
index f3954c2eaa3cb27e33f5855a60107ea7c3a7492b..aa2ab97d56e12dc3a5b76a36e91d96a9b426e5ef 100644 (file)
@@ -51,7 +51,7 @@ public:
     virtual void GoBack();
     virtual void GoForward();
     virtual void Stop();
     virtual void GoBack();
     virtual void GoForward();
     virtual void Stop();
-    virtual void Reload(wxWebViewReloadFlags flags=0);
+    virtual void Reload(wxWebViewReloadFlags flags = wxWEB_VIEW_RELOAD_DEFAULT);
 
     virtual wxString GetPageSource();
 
 
     virtual wxString GetPageSource();
 
index 47bdded5eb308d7aa87cb256cd63760d634cd1a4..dee0a4c435fb68ab58346a8648beec57a8083eb8 100644 (file)
@@ -56,7 +56,7 @@ public:
     virtual bool CanGoForward();
     virtual void GoBack();
     virtual void GoForward();
     virtual bool CanGoForward();
     virtual void GoBack();
     virtual void GoForward();
-    virtual void Reload(wxWebViewReloadFlags flags = 0);
+    virtual void Reload(wxWebViewReloadFlags flags = wxWEB_VIEW_RELOAD_DEFAULT);
     virtual void Stop();
     virtual wxString GetPageSource();
     virtual void SetPageTitle(const wxString& title) { m_pageTitle = title; }
     virtual void Stop();
     virtual wxString GetPageSource();
     virtual void SetPageTitle(const wxString& title) { m_pageTitle = title; }
index 731a84e0345eaad10d1c8c05b5fd18a4aaf96f08..2031531e412909a0a421c1db2f5c9f19d80b8dc4 100644 (file)
@@ -70,7 +70,7 @@ enum wxWebViewReloadFlags
     /** Default reload, will access cache */
     wxWEB_VIEW_RELOAD_DEFAULT = 0,
     /** Reload the current view without accessing the cache */
     /** Default reload, will access cache */
     wxWEB_VIEW_RELOAD_DEFAULT = 0,
     /** Reload the current view without accessing the cache */
-    wxWEB_VIEW_RELOAD_NO_CACHE = 1
+    wxWEB_VIEW_RELOAD_NO_CACHE 
 };
 
 
 };