From: Vadim Zeitlin Date: Tue, 25 Sep 2001 14:33:50 +0000 (+0000) Subject: compilation fix for other (than GTK/MSW) ports X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f427e0d63499522aeeb8360e6a5c748de0a87d92 compilation fix for other (than GTK/MSW) ports git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11695 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/toplvcmn.cpp b/src/common/toplvcmn.cpp index 7a9101dbb2..9035677ca0 100644 --- a/src/common/toplvcmn.cpp +++ b/src/common/toplvcmn.cpp @@ -45,7 +45,10 @@ END_EVENT_TABLE() // implementation // ============================================================================ -IMPLEMENT_DYNAMIC_CLASS(wxTopLevelWindow, wxWindow) +// FIXME: some platforms don't have wxTopLevelWindow yet +#ifdef wxTopLevelWindowNative + IMPLEMENT_DYNAMIC_CLASS(wxTopLevelWindow, wxWindow) +#endif // ---------------------------------------------------------------------------- // construction/destruction