From 16ab09208f59da3ee5c72de7a95fd51c2f10b098 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 10 Sep 2020 12:39:05 -0700 Subject: [PATCH] Add missing dock art Clone methods --- interface/wx/aui/dockart.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/interface/wx/aui/dockart.h b/interface/wx/aui/dockart.h index dca375c5a7..4d69f7cd77 100644 --- a/interface/wx/aui/dockart.h +++ b/interface/wx/aui/dockart.h @@ -208,6 +208,11 @@ public: */ virtual ~wxAuiDockArt(); + /** + Create a copy of this wxAuiDockArt instance. + */ + virtual wxAuiDockArt* Clone() = 0; + /** Draws a background. */ @@ -297,6 +302,7 @@ public: wxAuiDefaultDockArt(); + virtual wxAuiDockArt* Clone(); int GetMetric(int metricId); void SetMetric(int metricId, int newVal); wxColour GetColour(int id);