As usual while waiting for the next release - don't forget to check the nightly builds in the forum.
class BaseView : public EditorBase{ public: BaseView(wxWindow* parent, const wxString& title); virtual ~BaseView(); virtual bool Close(); protected: private:};
bool EditorBase::Close(){ Destroy(); return true;}