more things are done by configure: checks for bool, whether overloading based
on size_t/int works or not (for wxString), the type of 3rd argument to getsockaddr, absence of libXpm is not fatal (not tested), whether strings.h exists git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1914 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -79,7 +79,9 @@ public:
|
||||
wxVariant();
|
||||
wxVariant(double val, const wxString& name = g_szNul);
|
||||
wxVariant(long val, const wxString& name = g_szNul);
|
||||
#ifdef HAVE_BOOL
|
||||
wxVariant(bool val, const wxString& name = g_szNul);
|
||||
#endif
|
||||
wxVariant(char val, const wxString& name = g_szNul);
|
||||
wxVariant(const wxString& val, const wxString& name = g_szNul);
|
||||
wxVariant(const char* val, const wxString& name = g_szNul); // Necessary or VC++ assumes bool!
|
||||
@@ -114,9 +116,11 @@ public:
|
||||
bool operator== (char value) const;
|
||||
bool operator!= (char value) const;
|
||||
void operator= (char value) ;
|
||||
#ifdef HAVE_BOOL
|
||||
bool operator== (bool value) const;
|
||||
bool operator!= (bool value) const;
|
||||
void operator= (bool value) ;
|
||||
#endif
|
||||
bool operator== (const wxString& value) const;
|
||||
bool operator!= (const wxString& value) const;
|
||||
void operator= (const wxString& value) ;
|
||||
|
Reference in New Issue
Block a user