From fd2b143a48f2b68fd4356700b5fb410eefe6cec2 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 22 Apr 2017 16:17:33 +0200 Subject: [PATCH] Fix wxDataViewRendererBase::FinishEditing() symbol version This symbol is not new in 3.0.3, unlike wxDataViewRenderer::FinishEditing(), so it should keep its 3.0 version to avoid breaking ABI compatibility. --- version-script.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/version-script.in b/version-script.in index fe75e1e2c2..8a9ad189b7 100644 --- a/version-script.in +++ b/version-script.in @@ -45,5 +45,8 @@ # generic branch tag (don't remove this!): @WX_VERSION_TAG@ { + # Explicitly mention this one as otherwise it would be caught by + # wxDataViewRenderer*FinishEditing wildcard in 3.0.3 above. + *wxDataViewRendererBase*FinishEditing*; *; };