build fix for wxUSE_VALIDATORS==0 when NULL is defined to be nullptr
casting nullptr is not allowed git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76314 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
		@@ -104,7 +104,8 @@ extern WXDLLIMPEXP_DATA_CORE(const wxValidator) wxDefaultValidator;
 | 
				
			|||||||
    // a wxValidator parameter to avoid using "#if wxUSE_VALIDATORS"
 | 
					    // a wxValidator parameter to avoid using "#if wxUSE_VALIDATORS"
 | 
				
			||||||
    // everywhere
 | 
					    // everywhere
 | 
				
			||||||
    class WXDLLIMPEXP_FWD_CORE wxValidator;
 | 
					    class WXDLLIMPEXP_FWD_CORE wxValidator;
 | 
				
			||||||
    #define wxDefaultValidator (*reinterpret_cast<wxValidator*>(NULL))
 | 
					    static const wxValidator* wxDefaultValidatorPtr = NULL;
 | 
				
			||||||
 | 
					    #define wxDefaultValidator (*wxDefaultValidatorPtr)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // this macro allows to avoid warnings about unused parameters when
 | 
					    // this macro allows to avoid warnings about unused parameters when
 | 
				
			||||||
    // wxUSE_VALIDATORS == 0
 | 
					    // wxUSE_VALIDATORS == 0
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user