Add EditControl support for wxTreeCtrl under wxQT

This commit is contained in:
Graham Dawes
2019-02-06 09:20:13 +00:00
parent cfe36f7ae7
commit 57348b4a59
3 changed files with 120 additions and 97 deletions

View File

@@ -8,7 +8,7 @@
#ifndef _WX_QT_TREECTRL_H_
#define _WX_QT_TREECTRL_H_
class QTreeWidget;
class wxQTreeWidget;
class WXDLLIMPEXP_CORE wxTreeCtrl : public wxTreeCtrlBase
{
@@ -140,7 +140,7 @@ private:
void SendDeleteEvent(const wxTreeItemId &item);
wxTreeItemId GetNext(const wxTreeItemId &item) const;
QTreeWidget *m_qtTreeWidget;
wxQTreeWidget *m_qtTreeWidget;
wxDECLARE_DYNAMIC_CLASS(wxTreeCtrl);
};