From fd8734512097f8d12766074c464037d6441cbd27 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 9 Nov 2007 20:34:56 +0000 Subject: [PATCH] compilation fix for VC6 with standard (i.e. not updated) SDK (patch 1828610) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49783 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/textentry.cpp | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/src/msw/textentry.cpp b/src/msw/textentry.cpp index 8717fc3c27..79c0fa201e 100644 --- a/src/msw/textentry.cpp +++ b/src/msw/textentry.cpp @@ -41,7 +41,12 @@ // wxIEnumString implements IEnumString interface // ---------------------------------------------------------------------------- -#if wxUSE_OLE +// standard VC6 SDK (WINVER == 0x0400) does not know about IAutoComplete +#if wxUSE_OLE && (WINVER >= 0x0500) + #define HAS_AUTOCOMPLETE +#endif + +#ifdef HAS_AUTOCOMPLETE #include "wx/msw/ole/oleutils.h" #include @@ -160,7 +165,7 @@ END_IID_TABLE; IMPLEMENT_IUNKNOWN_METHODS(wxIEnumString) -#endif // wxUSE_OLE +#endif // HAS_AUTOCOMPLETE // ============================================================================ // wxTextEntry implementation @@ -282,10 +287,9 @@ void wxTextEntry::GetSelection(long *from, long *to) const // auto-completion // ---------------------------------------------------------------------------- -#if wxUSE_OLE - bool wxTextEntry::AutoCompleteFileNames() { +#ifdef HAS_AUTOCOMPLETE typedef HRESULT (WINAPI *SHAutoComplete_t)(HWND, DWORD); static SHAutoComplete_t s_pfnSHAutoComplete = (SHAutoComplete_t)-1; static wxDynamicLibrary s_dllShlwapi; @@ -313,12 +317,15 @@ bool wxTextEntry::AutoCompleteFileNames() return false; } - return true; +#else // !HAS_AUTOCOMPLETE + return false; +#endif // HAS_AUTOCOMPLETE/!HAS_AUTOCOMPLETE } bool wxTextEntry::AutoComplete(const wxArrayString& choices) { +#ifdef HAS_AUTOCOMPLETE // create an object exposing IAutoComplete interface (don't go for // IAutoComplete2 immediately as, presumably, it might be not available on // older systems as otherwise why do we have both -- although in practice I @@ -366,12 +373,12 @@ bool wxTextEntry::AutoComplete(const wxArrayString& choices) // do it immediately, presumably the edit control itself keeps a reference // to the auto completer object pAutoComplete->Release(); - return true; +#else // !HAS_AUTOCOMPLETE + return false; +#endif // HAS_AUTOCOMPLETE/!HAS_AUTOCOMPLETE } -#endif // wxUSE_OLE - // ---------------------------------------------------------------------------- // editable state // ---------------------------------------------------------------------------- -- 2.49.0