We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aba31db commit 0c625cdCopy full SHA for 0c625cd
doc_construct.cpp
@@ -483,6 +483,7 @@ int i;
483
{
484
m_pTimerWnd->DestroyWindow();
485
delete m_pTimerWnd;
486
+ m_pTimerWnd = NULL;
487
}
488
489
for (i = 0; i < 8; i++)
serialize.cpp
@@ -92,7 +92,8 @@ void CMUSHclientDoc::Serialize(CArchive& ar)
92
} // end compiling regular expression
93
94
// kick off speed walk timer
95
- m_pTimerWnd->ChangeTimerRate (m_iSpeedWalkDelay);
+ if (m_pTimerWnd)
96
+ m_pTimerWnd->ChangeTimerRate (m_iSpeedWalkDelay);
97
98
// remember loaded option values
99
0 commit comments