]> git.saurik.com Git - wxWidgets.git/commitdiff
use public inheritance when deriving from wxHtmlWindowMouseHelper so that overriden...
authorVáclav Slavík <vslavik@fastmail.fm>
Fri, 14 Apr 2006 20:43:06 +0000 (20:43 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Fri, 14 Apr 2006 20:43:06 +0000 (20:43 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38726 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/html/htmlwin.h
include/wx/htmllbox.h

index 1a250ff73711b605b2ce65dcca8f50bed1187f27..62e4136c59b88008d1939e0311bac36a46e51aa6 100644 (file)
@@ -134,7 +134,7 @@ public:
  */
 class WXDLLIMPEXP_HTML wxHtmlWindowMouseHelper
 {
-public:
+protected:
     /**
         Ctor.
 
@@ -224,7 +224,7 @@ private:
 
 class WXDLLIMPEXP_HTML wxHtmlWindow : public wxScrolledWindow,
                                       public wxHtmlWindowInterface,
-                                      private wxHtmlWindowMouseHelper
+                                      public wxHtmlWindowMouseHelper
 {
     DECLARE_DYNAMIC_CLASS(wxHtmlWindow)
     friend class wxHtmlWinModule;
index 67fb76428384b4e2bdbd5c94efd8a35bda65620d..8a2a379e3502165b017dfbf06b324d8e2925d16f 100644 (file)
@@ -30,7 +30,7 @@ class WXDLLIMPEXP_HTML wxHtmlListBoxStyle;
 
 class WXDLLIMPEXP_HTML wxHtmlListBox : public wxVListBox,
                                        public wxHtmlWindowInterface,
-                                       private wxHtmlWindowMouseHelper
+                                       public wxHtmlWindowMouseHelper
 {
     DECLARE_ABSTRACT_CLASS(wxHtmlListBox)
 public: