use public inheritance when deriving from wxHtmlWindowMouseHelper so that overriden methods can call base versions

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38726 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2006-04-14 20:43:06 +00:00
parent 561db924ca
commit 31297dbbd0
2 changed files with 3 additions and 3 deletions

View 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;

View 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: