X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0824e369691b4a23a484e1d258b6e4ea021b022a..d3fa4bc22e84e3ca4d88cc1772f2d414140a1017:/interface/wx/unichar.h diff --git a/interface/wx/unichar.h b/interface/wx/unichar.h index f23a0c45b3..491874a9e7 100644 --- a/interface/wx/unichar.h +++ b/interface/wx/unichar.h @@ -45,6 +45,8 @@ public: wxUniChar(unsigned long int c); wxUniChar(short int c); wxUniChar(unsigned short int c); + wxUniChar(wxLongLong_t c); + wxUniChar(wxULongLong_t c); wxUniChar(const wxUniCharRef& c); @@ -97,6 +99,8 @@ public: operator unsigned long int() const; operator short int() const; operator unsigned short int() const; + operator wxLongLong_t() const; + operator wxULongLong_t() const; //@} //@{ @@ -114,6 +118,8 @@ public: wxUniChar& operator=(unsigned long int c); wxUniChar& operator=(short int c); wxUniChar& operator=(unsigned short int c); + wxUniChar& operator=(wxLongLong_t c); + wxUniChar& operator=(wxULongLong_t c); //@} };