X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e45689df6ca927c2105dd27cd57847a4fad45669..66c2bf7b1d9326fb650acfaae22ec50528cfbf7c:/include/wx/minifram.h diff --git a/include/wx/minifram.h b/include/wx/minifram.h index 8792576ef4..f769c5a691 100644 --- a/include/wx/minifram.h +++ b/include/wx/minifram.h @@ -5,18 +5,17 @@ // Modified by: // Created: // Copyright: (c) Julian Smart -// RCS-ID: $Id$ // Licence: wxWindows Licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_MINIFRAM_H_BASE_ -#define _WX_MINIFRAMH_BASE_ +#define _WX_MINIFRAM_H_BASE_ #include "wx/defs.h" -#if defined(__WXPALMOS__) -#include "wx/palmos/minifram.h" -#elif defined(__WXMSW__) +#if wxUSE_MINIFRAME + +#if defined(__WXMSW__) #include "wx/msw/minifram.h" #elif defined(__WXMOTIF__) #include "wx/motif/minifram.h" @@ -27,10 +26,15 @@ #elif defined(__WXX11__) #include "wx/x11/minifram.h" #elif defined(__WXMAC__) -#include "wx/mac/minifram.h" +#include "wx/osx/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 - // _WX_MINIFRAM_H_BASE_ +#endif // wxUSE_MINIFRAME +#endif // _WX_MINIFRAM_H_BASE_