From 89a791a938e25c60665843ffa872b67c622d4d91 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 5 Apr 2015 20:06:09 +0200 Subject: [PATCH] Fix typo in wxUSE_LONGLONG check. The recently added check had a typo in the constant name. Closes #16939. --- src/common/any.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/any.cpp b/src/common/any.cpp index 13f3b82b00..93aa5258ed 100644 --- a/src/common/any.cpp +++ b/src/common/any.cpp @@ -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