From 14c29db79c8096a0d0b50c8b49e2bad3a65483a1 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 14 Feb 2015 14:46:28 +0000 Subject: [PATCH] Correct wxInfoBar::ShowMessage() flags argument documentation. The default value is wxICON_INFORMATION, not wxICON_NONE. Closes #16861. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_3_0_BRANCH@78486 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/infobar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/wx/infobar.h b/interface/wx/infobar.h index 24903d882d..61e4087723 100644 --- a/interface/wx/infobar.h +++ b/interface/wx/infobar.h @@ -179,7 +179,7 @@ public: parameter to select the appropriate background colour for the notification. */ - void ShowMessage(const wxString& msg, int flags = wxICON_NONE); + void ShowMessage(const wxString& msg, int flags = wxICON_INFORMATION); /** @name Generic version customization methods.