From 086ab12eee4b03f3e245c37b81ebc3924f5336d8 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 20 Jul 2020 15:54:10 +0200 Subject: [PATCH] Fix trivial spelling mistake in wxLog::PassMessages() comment s/reenable/re-enable/ --- include/wx/log.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/log.h b/include/wx/log.h index 3b506dd777..2333fcbf14 100644 --- a/include/wx/log.h +++ b/include/wx/log.h @@ -804,7 +804,7 @@ public: // change the new log target void SetLog(wxLog *logger); - // this can be used to temporarily disable (and then reenable) passing + // this can be used to temporarily disable (and then re-enable) passing // messages to the old logger (by default we do pass them) void PassMessages(bool bDoPass) { m_bPassMessages = bDoPass; }