X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/216a72f3b9ab2bf72f489aceac0093138a6e7707..553f7d8f5608f18b99864cc36d46452d2e1ff05b:/include/wx/longlong.h diff --git a/include/wx/longlong.h b/include/wx/longlong.h index 69b6c4ca47..5ceca3c77b 100644 --- a/include/wx/longlong.h +++ b/include/wx/longlong.h @@ -129,11 +129,15 @@ public: // assignment operators // from native 64 bit integer +#ifndef wxLongLongIsLong wxLongLongNative& operator=(wxLongLong_t ll) { m_ll = ll; return *this; } wxLongLongNative& operator=(wxULongLong_t ll) { m_ll = ll; return *this; } +#endif // !wxLongLongNative wxLongLongNative& operator=(const wxULongLongNative &ll); + wxLongLongNative& operator=(int l) + { m_ll = l; return *this; } wxLongLongNative& operator=(long l) { m_ll = l; return *this; } wxLongLongNative& operator=(unsigned long l) @@ -361,10 +365,14 @@ public: // assignment operators // from native 64 bit integer +#ifndef wxLongLongIsLong wxULongLongNative& operator=(wxULongLong_t ll) { m_ll = ll; return *this; } wxULongLongNative& operator=(wxLongLong_t ll) { m_ll = ll; return *this; } +#endif // !wxLongLongNative + wxULongLongNative& operator=(int l) + { m_ll = l; return *this; } wxULongLongNative& operator=(long l) { m_ll = l; return *this; } wxULongLongNative& operator=(unsigned long l) @@ -606,6 +614,12 @@ public: return *this; } + // from int + wxLongLongWx& operator=(int l) + { + return operator=((long)l); + } + wxLongLongWx& operator=(unsigned long l) { m_lo = l;