Update of /cvsroot/mahogany/M/src/gui
In directory usw-pr-cvs1:/tmp/cvs-serv10363/src/gui
Modified Files:
wxComposeView.cpp
Log Message:
fixed crash when editing the drafts in novice mode
Index: wxComposeView.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxComposeView.cpp,v
retrieving revision 1.278
retrieving revision 1.279
diff -b -u -2 -r1.278 -r1.279
--- wxComposeView.cpp 30 Apr 2002 00:27:38 -0000 1.278
+++ wxComposeView.cpp 1 May 2002 16:47:50 -0000 1.279
@@ -3436,4 +3436,7 @@
{
m_from = from;
+
+ // be careful here: m_txtFrom might be not shown
+ if ( m_txtFrom )
m_txtFrom->SetValue(from);
}