]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/strvararg.h
Fix compilation of wxSpinCtrlGenericBase when PCH are not used.
[wxWidgets.git] / include / wx / strvararg.h
index 933c452f6ceef594a844e4336386336968614866..db91346e675b0f576c30fb691e9185b5413ecb49 100644 (file)
@@ -160,7 +160,7 @@ public:
         Arg_Pointer     = 0x0002,    // %p
         Arg_String      = 0x0004 | Arg_Pointer, // any form of string (%s and %p too)
 
-        Arg_Int         = 0x0008,
+        Arg_Int         = 0x0008 | Arg_Char, // (ints can be used with %c)
 #if SIZEOF_INT == SIZEOF_LONG
         Arg_LongInt     = Arg_Int,
 #else