X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b4bde7a74bac66004e392e9f3b24235efbde8d82..ca21c76b2a55252b483a3fe7e426211c229b50dc:/include/wx/validate.h diff --git a/include/wx/validate.h b/include/wx/validate.h index 3cd0fdc435..27473364bc 100644 --- a/include/wx/validate.h +++ b/include/wx/validate.h @@ -62,10 +62,23 @@ public: wxWindow *GetWindow() const { return (wxWindow *)m_validatorWindow; } void SetWindow(wxWindowBase *win) { m_validatorWindow = win; } - // validators beep by default if invalid key is pressed, these functions - // allow to change it + // validators beep by default if invalid key is pressed, this function + // allows to change this + static void SuppressBellOnError(bool suppress = true) + { ms_isSilent = suppress; } + + // test if beep is currently disabled static bool IsSilent() { return ms_isSilent; } - static void SetBellOnError(bool doIt = true) { ms_isSilent = doIt; } + + // this function is deprecated because it handled its parameter + // unnaturally: it disabled the bell when it was true, not false as could + // be expected; use SuppressBellOnError() instead +#if WXWIN_COMPATIBILITY_2_8 + static wxDEPRECATED_INLINE( + void SetBellOnError(bool doIt = true), + ms_isSilent = doIt; + ) +#endif protected: wxWindowBase *m_validatorWindow;