Separate !HAS_AUTOCOMPLETE stub versions from the real one as the code was
too difficult to read otherwise and would become even more so after the
addition of the upcoming custom auto-completer support.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67510
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// ----------------------------------------------------------------------------
#if wxUSE_OLE
// ----------------------------------------------------------------------------
#if wxUSE_OLE
+
+#ifdef HAS_AUTOCOMPLETE
+
bool wxTextEntry::DoAutoCompleteFileNames()
{
bool wxTextEntry::DoAutoCompleteFileNames()
{
typedef HRESULT (WINAPI *SHAutoComplete_t)(HWND, DWORD);
static SHAutoComplete_t s_pfnSHAutoComplete = (SHAutoComplete_t)-1;
static wxDynamicLibrary s_dllShlwapi;
typedef HRESULT (WINAPI *SHAutoComplete_t)(HWND, DWORD);
static SHAutoComplete_t s_pfnSHAutoComplete = (SHAutoComplete_t)-1;
static wxDynamicLibrary s_dllShlwapi;
return false;
}
return true;
return false;
}
return true;
-#else // !HAS_AUTOCOMPLETE
- return false;
-#endif // HAS_AUTOCOMPLETE/!HAS_AUTOCOMPLETE
}
bool wxTextEntry::DoAutoCompleteStrings(const wxArrayString& choices)
{
}
bool wxTextEntry::DoAutoCompleteStrings(const wxArrayString& choices)
{
// if we had an old enumerator we must reuse it as IAutoComplete doesn't
// free it if we call Init() again (see #10968) -- and it's also simpler
if ( m_enumStrings )
// if we had an old enumerator we must reuse it as IAutoComplete doesn't
// free it if we call Init() again (see #10968) -- and it's also simpler
if ( m_enumStrings )
// to the auto completer object
pAutoComplete->Release();
return true;
// to the auto completer object
pAutoComplete->Release();
return true;
#else // !HAS_AUTOCOMPLETE
#else // !HAS_AUTOCOMPLETE
- return false;
-#endif // HAS_AUTOCOMPLETE/!HAS_AUTOCOMPLETE
+// We still need to define stubs as we declared these overrides in the header.
+
+bool wxTextEntry::DoAutoCompleteFileNames()
+{
+ return wxTextEntryBase::DoAutoCompleteFileNames();
+
+bool wxTextEntry::DoAutoCompleteStrings(const wxArrayString& choices)
+{
+ return wxTextEntryBase::DoAutoCompleteStrings(choices);
+}
+
+#endif // HAS_AUTOCOMPLETE/!HAS_AUTOCOMPLETE
+
#endif // wxUSE_OLE
// ----------------------------------------------------------------------------
#endif // wxUSE_OLE
// ----------------------------------------------------------------------------