X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4fa80851004670b11f3bb60df2f08fab1512c461..37f6a080f43058b4575bece0eb11ad99fa63287d:/src/msw/textctrl.cpp diff --git a/src/msw/textctrl.cpp b/src/msw/textctrl.cpp index 3cb69ee267..8e6a49e05f 100644 --- a/src/msw/textctrl.cpp +++ b/src/msw/textctrl.cpp @@ -358,9 +358,12 @@ bool wxTextCtrl::Create(wxWindow *parent, wxWindowID id, // only give the error msg once if the DLL can't be loaded static bool s_errorGiven = false; // MT ok as only used by GUI - wxLogError(_("Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dll")); + if ( !s_errorGiven ) + { + wxLogError(_("Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dll")); - s_errorGiven = true; + s_errorGiven = true; + } m_verRichEdit = 0; }