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:
@@ -844,6 +844,11 @@ bool wxTextEntry::DoAutoCompleteStrings(const wxArrayString& choices)
|
|||||||
return wxTextEntryBase::DoAutoCompleteStrings(choices);
|
return wxTextEntryBase::DoAutoCompleteStrings(choices);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool wxTextEntry::DoAutoCompleteCustom(wxTextCompleter *completer)
|
||||||
|
{
|
||||||
|
return wxTextCompleter::DoAutoCompleteCustom(completer);
|
||||||
|
}
|
||||||
|
|
||||||
#endif // HAS_AUTOCOMPLETE/!HAS_AUTOCOMPLETE
|
#endif // HAS_AUTOCOMPLETE/!HAS_AUTOCOMPLETE
|
||||||
|
|
||||||
#endif // wxUSE_OLE
|
#endif // wxUSE_OLE
|
||||||
|
Reference in New Issue
Block a user