Use long int literals to represent long constants in propgrid sample

This commit is contained in:
Artur Wieczorek
2019-05-26 18:52:43 +02:00
parent a93713f7f8
commit 50330b3a26
3 changed files with 21 additions and 21 deletions

View File

@@ -621,7 +621,7 @@ bool wxArrayDoubleProperty::StringToValue( wxVariant& variant, const wxString& t
// by returning pending value of non-wxArrayDouble type.
if ( !ok )
{
variant = (long)0;
variant = 0L;
return true;
}