mirror of https://github.com/BOINC/boinc.git
- 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:
parent
6a40f89107
commit
e3558ce478
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue