From af43b7c9652568d95233acb3de412fb994eefb06 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 23 Aug 2021 01:16:21 +0200 Subject: [PATCH] Correct description of EnableProofCheck() requirements This functionality is available since Windows 8 only, not 7. --- interface/wx/textctrl.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/interface/wx/textctrl.h b/interface/wx/textctrl.h index dcd99c3dc0..df08b15921 100644 --- a/interface/wx/textctrl.h +++ b/interface/wx/textctrl.h @@ -1397,10 +1397,10 @@ public: Enable or disable native spell checking on this text control if it is available on the current platform. - @onlyfor{wxmsw,wxgtk} - Currently wxMSW (>= Windows 7) and wxGTK3 are supported. In addition, - wxMSW use requires that the text control has the wxTE_RICH2 style - set. wxGTK3 requires that the control has the wxTE_MULTILINE style. + Currently this is supported in wxMSW (when running under Windows 8 or + later) and wxGTK when using GTK 3. In addition, wxMSW requires that the + text control has the wxTE_RICH2 style set. wxGTK3 requires that the + control has the wxTE_MULTILINE style. @param enable Enables native proof checking if true, disables it otherwise.