Fix typo in wxUSE_LONGLONG check.

The recently added check had a typo in the constant name.

Closes #16939.
This commit is contained in:
Vadim Zeitlin 2015-04-05 20:06:09 +02:00
parent 119e67d959
commit 89a791a938

View File

@ -264,7 +264,7 @@ bool wxAnyValueTypeImplInt::ConvertValue(const wxAnyValueBuffer& src,
wxAnyBaseIntType value = GetValue(src);
if ( wxANY_VALUE_TYPE_CHECK_TYPE(dstType, wxString) )
{
#if defined(wxLongLong_t) && wxUSE_LONLONG
#if defined(wxLongLong_t) && wxUSE_LONGLONG
wxLongLong ll(value);
wxString s = ll.ToString();
#else