From: Vadim Zeitlin Date: Sat, 4 Nov 2006 13:01:30 +0000 (+0000) Subject: define wxMiniFrame at least somehow if the current port doesn't define it X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f7ed09d0c78586b44871a6678caad1313a401aab 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 --- diff --git a/include/wx/minifram.h b/include/wx/minifram.h index 8792576ef4..3c06de8766 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