Define wxTextEntry::DoAutoCompleteStrings() stub in wxMSW code too.

Forgot to define this function in !HAS_AUTOCOMPLETE case. This fixes linking
problems with old compilers/headers such as VC6 with its original SDK.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67518 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2011-04-16 23:17:44 +00:00
parent 85047589a9
commit 32bd17fcb5

View File

@@ -844,6 +844,11 @@ bool wxTextEntry::DoAutoCompleteStrings(const wxArrayString& choices)
return wxTextEntryBase::DoAutoCompleteStrings(choices);
}
bool wxTextEntry::DoAutoCompleteCustom(wxTextCompleter *completer)
{
return wxTextCompleter::DoAutoCompleteCustom(completer);
}
#endif // HAS_AUTOCOMPLETE/!HAS_AUTOCOMPLETE
#endif // wxUSE_OLE