Private macro moved in waiting for DektopPolicy implementation.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27963 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba 2004-06-23 11:55:33 +00:00
parent f604c65827
commit 4b0881393c
2 changed files with 14 additions and 10 deletions

View File

@ -189,16 +189,6 @@ enum wxStockCursor
#define wxBITMAP(name) wxBitmap(name##_xpm, wxBITMAP_TYPE_XPM)
#endif // platform
/* Macro for avoiding #ifdefs when value have to be different depending on size of
device we display on
*/
#if defined(__SMARTPHONE__)
#define wxLARGESMALL(large,small) small
#else
#define wxLARGESMALL(large,small) large
#endif
// ===========================================================================
// classes
// ===========================================================================

View File

@ -54,6 +54,20 @@
#define wxID_LISTBOX 3000
// ---------------------------------------------------------------------------
// macros
// ---------------------------------------------------------------------------
/* Macro for avoiding #ifdefs when value have to be different depending on size of
device we display on
*/
#if defined(__SMARTPHONE__)
#define wxLARGESMALL(large,small) small
#else
#define wxLARGESMALL(large,small) large
#endif
// ----------------------------------------------------------------------------
// private functions
// ----------------------------------------------------------------------------