Use wxUSE_LONGLONG_NATIVE more
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55917 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -540,6 +540,7 @@ public:
|
|||||||
return value.GetArrayString();
|
return value.GetArrayString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if wxUSE_LONGLONG_NATIVE
|
||||||
wxLongLong_t GetPropertyValueAsLongLong( wxPGPropArg id ) const
|
wxLongLong_t GetPropertyValueAsLongLong( wxPGPropArg id ) const
|
||||||
{
|
{
|
||||||
wxPG_PROP_ID_GETPROPVAL_CALL_PROLOG_RETVAL_WFALLBACK("wxLongLong",
|
wxPG_PROP_ID_GETPROPVAL_CALL_PROLOG_RETVAL_WFALLBACK("wxLongLong",
|
||||||
@@ -557,6 +558,7 @@ public:
|
|||||||
ull << value;
|
ull << value;
|
||||||
return ull.GetValue();
|
return ull.GetValue();
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
wxArrayInt GetPropertyValueAsArrayInt( wxPGPropArg id ) const
|
wxArrayInt GetPropertyValueAsArrayInt( wxPGPropArg id ) const
|
||||||
{
|
{
|
||||||
@@ -1116,6 +1118,7 @@ public:
|
|||||||
SetPropVal( id, v );
|
SetPropVal( id, v );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if wxUSE_LONGLONG_NATIVE
|
||||||
/** Sets value (wxLongLong&) of a property.
|
/** Sets value (wxLongLong&) of a property.
|
||||||
*/
|
*/
|
||||||
void SetPropertyValue( wxPGPropArg id, wxLongLong_t value )
|
void SetPropertyValue( wxPGPropArg id, wxLongLong_t value )
|
||||||
@@ -1130,6 +1133,8 @@ public:
|
|||||||
wxVariant v = WXVARIANT(wxULongLong(value));
|
wxVariant v = WXVARIANT(wxULongLong(value));
|
||||||
SetPropVal( id, v );
|
SetPropVal( id, v );
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/** Sets value (wxArrayInt&) of a property.
|
/** Sets value (wxArrayInt&) of a property.
|
||||||
*/
|
*/
|
||||||
void SetPropertyValue( wxPGPropArg id, const wxArrayInt& value )
|
void SetPropertyValue( wxPGPropArg id, const wxArrayInt& value )
|
||||||
|
Reference in New Issue
Block a user