]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/webviewarchivehandler.h
Revert HasModifiers() change in behaviour, add HasAnyModifiers().
[wxWidgets.git] / include / wx / webviewarchivehandler.h
index da8a9267945d28d8228b36cc2ef1a2cfab6658b3..40f4ce5195ff8cd8d0849febba58e10f0568a38e 100644 (file)
@@ -12,7 +12,7 @@
 
 #include "wx/setup.h"
 
-#if wxUSE_WEB
+#if wxUSE_WEBVIEW
 
 class wxFSFile;
 class wxFileSystem;
@@ -20,17 +20,18 @@ class wxFileSystem;
 #include "wx/webview.h"
 
 //Loads from uris such as scheme:///C:/example/example.html or archives such as
-//scheme:///C:/example/example.zip;protocol=zip/example.html 
+//scheme:///C:/example/example.zip;protocol=zip/example.html
 
-class WXDLLIMPEXP_WEB wxWebViewArchiveHandler : public wxWebViewHandler
+class WXDLLIMPEXP_WEBVIEW wxWebViewArchiveHandler : public wxWebViewHandler
 {
 public:
     wxWebViewArchiveHandler(const wxString& scheme);
+    virtual ~wxWebViewArchiveHandler();
     virtual wxFSFile* GetFile(const wxString &uri);
 private:
     wxFileSystem* m_fileSystem;
 };
 
-#endif
+#endif // wxUSE_WEBVIEW
 
 #endif // _WX_WEB_VIEW_FILE_HANDLER_H_