- MGR: Fix small bug when displaying the active task count in the

taskbar.
        
    clientgui/
        BOINCTaskBar.cpp

svn path=/trunk/boinc/; revision=15593
This commit is contained in:
Rom Walton 2008-07-11 16:07:42 +00:00
parent 6a40f89107
commit e3558ce478
2 changed files with 9 additions and 1 deletions

View File

@ -5672,3 +5672,10 @@ Charlie 11 July 2008
clientgui/
BOINCBaseView.cpp
Rom 11 July 2008
- MGR: Fix small bug when displaying the active task count in the
taskbar.
clientgui/
BOINCTaskBar.cpp

View File

@ -381,7 +381,8 @@ void CTaskBarIcon::OnMouseMove(wxTaskBarIconEvent& WXUNUSED(event)) {
// enough room to display them all, so just tell the user how many are
// currently running.
strBuffer.Printf(
_("%d tasks running.")
_("%d tasks running."),
iActiveTaskCount
);
if (strMessage.Length() > 0) strMessage += wxT("\n");
strMessage += strBuffer;