]> git.saurik.com Git - wxWidgets.git/commitdiff
clear m_oldStatusText after restoring it, otherwise we could restore it again the...
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 30 Mar 2007 20:06:52 +0000 (20:06 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 30 Mar 2007 20:06:52 +0000 (20:06 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45173 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/framecmn.cpp

index b0ad197a09ff9d97a30124246f5690467f2f8b31..a4e9d210b07f1bbcf05dd35db60c86a2418a5d9a 100644 (file)
@@ -447,6 +447,9 @@ void wxFrameBase::DoGiveHelp(const wxString& text, bool show)
     {
         // i.e. restore the old one
         help = m_oldStatusText;
     {
         // i.e. restore the old one
         help = m_oldStatusText;
+
+        // make sure we get the up to date text when showing it the next time
+        m_oldStatusText.clear();
     }
 
     statbar->SetStatusText(help, m_statusBarPane);
     }
 
     statbar->SetStatusText(help, m_statusBarPane);