> +#define wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE 1
above line caused code like
class wxRichTextCtrl:
public wxTextCtrlBase, wxScrollHelper
shouldn't it be
class wxRichTextCtrl:
public wxTextCtrlBase, public wxScrollHelper
in 91 line of richtextctrl.h?
Causes warnings about private inheritance now.
ABX