printf() format warning fixed

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18244 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-12-15 22:25:13 +00:00
parent d0200d9eff
commit 14ac4f3c54

View File

@@ -967,7 +967,7 @@ wxString wxGridCellNumberEditor::GetValue() const
if( HasRange() )
{
int value = Spin()->GetValue();
long value = Spin()->GetValue();
s.Printf(wxT("%ld"), value);
}
else