From 177af5232fb954b2c2abdb6ea0dc2a5c41f2dfe0 Mon Sep 17 00:00:00 2001 From: David Elliott Date: Fri, 9 Nov 2007 19:10:04 +0000 Subject: [PATCH] Need to initialize m_message and m_caption on 2.8 branch. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@49770 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/cocoa/msgdlg.mm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cocoa/msgdlg.mm b/src/cocoa/msgdlg.mm index 2b0403478f..8a52415d7c 100644 --- a/src/cocoa/msgdlg.mm +++ b/src/cocoa/msgdlg.mm @@ -50,8 +50,8 @@ wxCocoaMessageDialog::wxCocoaMessageDialog(wxWindow *parent, const wxPoint& pos) : wxDialog(parent,message,caption,style) { - //m_caption = caption; - //m_message = message; + m_caption = caption; + m_message = message; //wxTopLevelWindows.Append((wxWindowBase*)this); wxTopLevelWindows.Append(this);