From bfb1fb8228bece797079e39919cc10f24cd205aa Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 21 Mar 2007 02:56:21 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=12258 --- checkin_notes | 6 ++++++ clientgui/ProjectListCtrl.cpp | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/checkin_notes b/checkin_notes index c7a2b7f36e..0312f52dd6 100755 --- a/checkin_notes +++ b/checkin_notes @@ -2734,3 +2734,9 @@ David 20 Mar 2007 lib/ procinfo_unix.C util.C,h + +David 20 Mar 2007 + - Manager: cosmetic tweaks to project select + + clientgui/ + ProjectListCtrl.cpp diff --git a/clientgui/ProjectListCtrl.cpp b/clientgui/ProjectListCtrl.cpp index 9194ac8191..189d95a1c6 100644 --- a/clientgui/ProjectListCtrl.cpp +++ b/clientgui/ProjectListCtrl.cpp @@ -291,7 +291,7 @@ void CProjectListItemCtrl::OnMouseClick( wxMouseEvent& event ) { bool CProjectListItemCtrl::SetTitle( wxString strTitle ) { - if (m_pTitleStaticCtrl) m_pTitleStaticCtrl->SetLabel( strTitle ); + if (m_pTitleStaticCtrl) m_pTitleStaticCtrl->SetLabel(_(" ")+strTitle ); m_strTitle = strTitle; return true; } @@ -299,7 +299,7 @@ bool CProjectListItemCtrl::SetTitle( wxString strTitle ) { bool CProjectListItemCtrl::SetURL( wxString strURL ) { if (m_pWebsiteCtrl) { - m_pWebsiteCtrl->SetLabel(_("Web")); + m_pWebsiteCtrl->SetLabel(_("(web)")); m_pWebsiteCtrl->SetURL(strURL); } m_strURL = strURL;