diff --git a/checkin_notes b/checkin_notes index 52f1b62dea..f1f0c11f62 100644 --- a/checkin_notes +++ b/checkin_notes @@ -7208,3 +7208,9 @@ Rom 13 Oct 2011 clientgui/gtk/ taskbarex.cpp + +David 13 Oct 2011 + - manager: don't show slot number in simple view task list + + clientgui/ + sg_TaskPanel.cpp,h diff --git a/clientgui/sg_TaskPanel.cpp b/clientgui/sg_TaskPanel.cpp index babcdbf6d3..bca0e6e373 100755 --- a/clientgui/sg_TaskPanel.cpp +++ b/clientgui/sg_TaskPanel.cpp @@ -558,26 +558,14 @@ void CSimpleTaskPanel::GetApplicationAndProjectNames(RESULT* result, wxString* a ); } -#if SELECTBYRESULTNAME appName->Printf( - wxT("%d. %s%s %d.%02d %s"), - state_result->slot+1, + wxT("%s%s %d.%02d %s"), state_result->project->anonymous_platform?_("Local: "):wxT(""), strAppBuffer.c_str(), state_result->avp->version_num / 100, state_result->avp->version_num % 100, strClassBuffer.c_str() ); -#else - appName->Printf(wxT("%d. %s%s %d.%02d %s"), - state_result->slot+1, - state_result->project->anonymous_platform?_("Local: "):wxT(""), - strAppBuffer.c_str(), - state_result->avp->version_num / 100, - state_result->avp->version_num % 100, - strClassBuffer.c_str() - ); -#endif } if (projName != NULL) { diff --git a/clientgui/sg_TaskPanel.h b/clientgui/sg_TaskPanel.h index 53c32588ce..30e7badf87 100755 --- a/clientgui/sg_TaskPanel.h +++ b/clientgui/sg_TaskPanel.h @@ -18,7 +18,8 @@ #ifndef __sg_TaskPanel__ #define __sg_TaskPanel__ - +// Comment??? +// #define SELECTBYRESULTNAME 0 #include "sg_PanelBase.h"