You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
706 B
22 lines
706 B
From dcc23ceba8e1dba828e8b3e4633ac77acaad7562 Mon Sep 17 00:00:00 2001
|
|
From: Robin Dunn <robin@alldunn.com>
|
|
Date: Thu, 5 Mar 2015 15:14:23 -0800
|
|
Subject: [PATCH] Change ~wxPGChoicesData from private to protected
|
|
|
|
---
|
|
include/wx/propgrid/property.h | 1 +
|
|
interface/wx/propgrid/property.h | 3 +++
|
|
2 files changed, 4 insertions(+)
|
|
|
|
diff --git a/include/wx/propgrid/property.h b/include/wx/propgrid/property.h
|
|
index bc61848..ab1439d 100644
|
|
--- a/include/wx/propgrid/property.h
|
|
+++ b/include/wx/propgrid/property.h
|
|
@@ -803,6 +803,7 @@ class WXDLLIMPEXP_PROPGRID wxPGChoicesData : public wxObjectRefData
|
|
private:
|
|
wxVector<wxPGChoiceEntry> m_items;
|
|
|
|
+protected:
|
|
virtual ~wxPGChoicesData();
|
|
};
|