From f7ed09d0c78586b44871a6678caad1313a401aab Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 4 Nov 2006 13:01:30 +0000 Subject: [PATCH] define wxMiniFrame at least somehow if the current port doesn't define it git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43031 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/minifram.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/wx/minifram.h b/include/wx/minifram.h index 8792576..3c06de8 100644 --- a/include/wx/minifram.h +++ b/include/wx/minifram.h @@ -30,6 +30,11 @@ #include "wx/mac/minifram.h" #elif defined(__WXPM__) #include "wx/os2/minifram.h" +#else +// TODO: it seems that wxMiniFrame could be just defined here generically +// instead of having all the above port-specific headers +#include "wx/frame.h" +typedef wxFrame wxMiniFrame; #endif #endif -- 2.7.4