From 9c9d6e8481fdb2eeb08efd7f79ae7915d85eb764 Mon Sep 17 00:00:00 2001 From: Mariano Reingart Date: Mon, 29 Sep 2014 03:50:34 +0000 Subject: [PATCH] Implement abstract class for wxuniversal in wxQT, thanks @seandepagnier git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77924 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/qt/window.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/qt/window.cpp b/src/qt/window.cpp index 8ba5a764e5..920dc70523 100644 --- a/src/qt/window.cpp +++ b/src/qt/window.cpp @@ -81,6 +81,9 @@ void wxQtShortcutHandler::activated() //############################################################################## +#ifdef __WXUNIVERSAL__ + IMPLEMENT_ABSTRACT_CLASS(wxWindow, wxWindowBase) +#endif // __WXUNIVERSAL__ // We use the QObject property capabilities to store the wxWindow pointer, so we // don't need to use a separate lookup table. We also want to use it in the proper