From: Włodzimierz Skiba Date: Tue, 20 Jul 2004 19:17:52 +0000 (+0000) Subject: wxUSE_LOG fixes. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/924fe7dabe68c324b6e5005bbe1c4119447867f3 wxUSE_LOG fixes. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28339 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/demos/bombs/bombs1.cpp b/demos/bombs/bombs1.cpp index 9853fa7fff..aa4bb3ced3 100644 --- a/demos/bombs/bombs1.cpp +++ b/demos/bombs/bombs1.cpp @@ -171,9 +171,14 @@ void BombsCanvas::DrawField(wxDC *dc, int xc1, int yc1, int xc2, int yc2) } dc->SetFont(wxNullFont); -#if wxUSE_LOG - wxLogStatus(wxT("%d bombs %d remaining cells"), + wxString msg; + msg.Printf(wxT("%d bombs %d remaining cells"), m_game->GetNumBombs(), m_game->GetNumRemainingCells() ); + +#if wxUSE_LOG && wxUSE_STATUSBAR + wxLogStatus(msg); +#else + this->GetParent()->SetTitle(msg); #endif }