From 339e9747d26ed4cef83de1e50b5313c2aed8d443 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 4 Jan 2011 16:21:42 +0000 Subject: [PATCH] Remove duplicate IMPLEMENT_XXX_CLASS macros from wxUniv code. The RTTI macros are now used in common code only and having them in wxUniv too results in linker errors because of duplicate symbols. Just remove them to fix this. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66579 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/univ/combobox.cpp | 2 -- src/univ/stattext.cpp | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/univ/combobox.cpp b/src/univ/combobox.cpp index 2a23793d7e..d738b49f7c 100644 --- a/src/univ/combobox.cpp +++ b/src/univ/combobox.cpp @@ -105,8 +105,6 @@ BEGIN_EVENT_TABLE(wxComboListBox, wxListBox) EVT_LEFT_UP(wxComboListBox::OnLeftUp) END_EVENT_TABLE() -IMPLEMENT_DYNAMIC_CLASS2(wxComboBox, wxControl, wxComboCtrl) - // ============================================================================ // implementation // ============================================================================ diff --git a/src/univ/stattext.cpp b/src/univ/stattext.cpp index 3fccad2764..e4449268a9 100644 --- a/src/univ/stattext.cpp +++ b/src/univ/stattext.cpp @@ -39,8 +39,6 @@ // implementation // ============================================================================ -IMPLEMENT_ABSTRACT_CLASS(wxStaticText, wxGenericStaticText) - // ---------------------------------------------------------------------------- // creation // ---------------------------------------------------------------------------- -- 2.47.2