git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37500
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxLongLongNative& operator=(wxULongLong_t ll)
{ m_ll = ll; return *this; }
wxLongLongNative& operator=(const wxULongLongNative &ll);
wxLongLongNative& operator=(wxULongLong_t ll)
{ m_ll = ll; return *this; }
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)
wxLongLongNative& operator=(long l)
{ m_ll = l; return *this; }
wxLongLongNative& operator=(unsigned long l)
{ m_ll = ll; return *this; }
wxULongLongNative& operator=(wxLongLong_t ll)
{ m_ll = ll; return *this; }
{ m_ll = ll; return *this; }
wxULongLongNative& operator=(wxLongLong_t ll)
{ m_ll = ll; return *this; }
+ wxULongLongNative& operator=(int l)
+ { m_ll = l; return *this; }
wxULongLongNative& operator=(long l)
{ m_ll = l; return *this; }
wxULongLongNative& operator=(unsigned long l)
wxULongLongNative& operator=(long l)
{ m_ll = l; return *this; }
wxULongLongNative& operator=(unsigned long l)
+ // from int
+ wxLongLongWx& operator=(int l)
+ {
+ return operator=((long)l);
+ }
+
wxLongLongWx& operator=(unsigned long l)
{
m_lo = l;
wxLongLongWx& operator=(unsigned long l)
{
m_lo = l;