]> git.saurik.com Git - wxWidgets.git/commitdiff
Missing DMC value after recent changes in tbar95.cpp.
authorWłodzimierz Skiba <abx@abx.art.pl>
Tue, 29 Mar 2005 17:24:02 +0000 (17:24 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Tue, 29 Mar 2005 17:24:02 +0000 (17:24 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33155 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/missing.h

index 75f5b5a13c268228f664e11d75d36b1bcf2c7583..fb5acfa2b248cad728d9d62bd7201875d02eab1d 100644 (file)
@@ -197,8 +197,8 @@ typedef struct {
 
 #if (_WIN32_IE >= 0x0300)
 typedef struct tagINITCOMMONCONTROLSEX {
-       DWORD dwSize;
-       DWORD dwICC;
+    DWORD dwSize;
+    DWORD dwICC;
 } INITCOMMONCONTROLSEX,*LPINITCOMMONCONTROLSEX;
 
 #define GDTR_MIN 1
@@ -217,7 +217,7 @@ typedef struct tagINITCOMMONCONTROLSEX {
 #define DTS_APPCANPARSE 16
 #define DTS_RIGHTALIGN 32
 #if ( _WIN32_IE >= 0x500 )
-#define DTS_SHORTDATECENTURYFORMAT     0x000C
+#define DTS_SHORTDATECENTURYFORMAT 0x000C
 #endif /* _WIN32_IE >= 0x500 */
 #endif
 
@@ -236,7 +236,7 @@ typedef struct tagINITCOMMONCONTROLSEX {
 #define DTM_SETSYSTEMTIME 0x1002
 #define DTM_GETRANGE 0x1003
 #define DTM_SETRANGE 0x1004
-#define DTN_DATETIMECHANGE ((UINT)-759) 
+#define DTN_DATETIMECHANGE ((UINT)-759)
 
 #define DateTime_GetMonthCal(hwnd) SNDMSG(hwnd, DTM_GETMONTHCAL, 0, 0)
 #define DateTime_GetMonthCalColor(hwnd, icolor) SNDMSG(hwnd, DTM_GETMONTHCAL, (WPARAM)icolor,0)
@@ -480,6 +480,10 @@ typedef struct {
 
 #endif // !defined(TBIF_SIZE)
 
+#if !defined(TB_SETDISABLEDIMAGELIST)
+    #define TB_SETDISABLEDIMAGELIST (WM_USER + 54)
+#endif // !defined(TB_SETDISABLEDIMAGELIST)
+
 #endif // wxUSE_TOOLBAR
 
 // ----------------------------------------------------------------------------