From: Vadim Zeitlin Date: Thu, 8 Mar 2007 14:31:04 +0000 (+0000) Subject: fix extra comma at the end of wxStretch enum introduced by last commit X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a757b4a725732611cac60b135eff60c5323404cc?ds=inline fix extra comma at the end of wxStretch enum introduced by last commit git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44691 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/defs.h b/include/wx/defs.h index 1267d4ec74..ca07009539 100644 --- a/include/wx/defs.h +++ b/include/wx/defs.h @@ -1274,18 +1274,18 @@ enum wxAlignment enum wxStretch { + /* for compatibility only, default now, don't use explicitly any more */ +#if WXWIN_COMPATIBILITY_2_6 + wxADJUST_MINSIZE = 0, +#endif + wxSTRETCH_NOT = 0x0000, wxSHRINK = 0x1000, wxGROW = 0x2000, wxEXPAND = wxGROW, wxSHAPED = 0x4000, wxFIXED_MINSIZE = 0x8000, - wxTILE = 0xc000, - - /* for compatibility only, default now, don't use explicitly any more */ -#if WXWIN_COMPATIBILITY_2_6 - wxADJUST_MINSIZE = 0 -#endif + wxTILE = 0xc000 }; /* border flags: the values are chosen for backwards compatibility */