Searched refs:m_Value (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/msw/ole/
H A Doleutils.h107 wxAutoULong(ULONG value = 0) : m_Value(value) { }
109 operator ULONG&() { return m_Value; }
110 ULONG& operator=(ULONG value) { m_Value = value; return m_Value; }
112 wxAutoULong& operator++() { ++m_Value; return *this; }
113 const wxAutoULong operator++( int ) { wxAutoULong temp = *this; ++m_Value; return temp; }
115 wxAutoULong& operator--() { --m_Value; return *this; }
116 const wxAutoULong operator--( int ) { wxAutoULong temp = *this; --m_Value; return temp; }
119 ULONG m_Value; member in class:wxAutoULong
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/include/wx/gizmos/
H A Dledctrl.h50 const wxString &GetValue() const { return m_Value; }
58 wxString m_Value; member in class:wxLEDNumberCtrl
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/gizmos/
H A Dledctrl.cpp132 if (Value != m_Value)
145 m_Value = Value;
184 const int DigitCount = m_Value.Len();
187 wxChar c = m_Value.GetChar(offset);
363 for (unsigned int i = 0; i < m_Value.Len(); i++)
364 if (m_Value.GetChar(i) != '.')

Completed in 39 milliseconds