From da2ca8d428688cf3ef02ce33b64c1a364e1e50f2 Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Thu, 14 Apr 2011 15:15:36 +0000 Subject: [PATCH] - MGR: Check to see if keyboard accelerators can be redefined on the fly. clientgui/ DlgEventLog.cpp svn path=/trunk/boinc/; revision=23367 --- checkin_notes | 8 +++++++- clientgui/DlgEventLog.cpp | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/checkin_notes b/checkin_notes index eaab069c29..ab77ee04fa 100644 --- a/checkin_notes +++ b/checkin_notes @@ -2195,7 +2195,7 @@ Rom 11 Apr 2011 BOINCTaskBar.cpp Rom 13 Apr 2011 - - MGR: Add missing keyboard accellerators for the event log. + - MGR: Add missing keyboard accelerators for the event log. - MGR: Re-enable the next button when the terms of use wizard page when the back button is pressed. @@ -2235,3 +2235,9 @@ David 13 Apr 2011 scheduler_op.cpp app.cpp app_control.cpp + +Rom 14 Apr 2011 + - MGR: Check to see if keyboard accelerators can be redefined on the fly. + + clientgui/ + DlgEventLog.cpp diff --git a/clientgui/DlgEventLog.cpp b/clientgui/DlgEventLog.cpp index 4bb9c77af1..b8cc044504 100644 --- a/clientgui/DlgEventLog.cpp +++ b/clientgui/DlgEventLog.cpp @@ -318,13 +318,13 @@ void CDlgEventLog::CreateControls() void CDlgEventLog::SetFilterButtonText() { if (s_bIsFiltered) { - m_pFilterButton->SetLabel( _("Show all messages") ); + m_pFilterButton->SetLabel( _("Show all &messages") ); m_pFilterButton->SetHelpText( _("Show messages for all projects") ); #ifdef wxUSE_TOOLTIPS m_pFilterButton->SetToolTip(_("Show messages for all projects")); #endif } else { - m_pFilterButton->SetLabel( _("Show only this project") ); + m_pFilterButton->SetLabel( _("&Show only this project") ); m_pFilterButton->SetHelpText( _("Show only the messages for the selected project") ); #ifdef wxUSE_TOOLTIPS m_pFilterButton->SetToolTip(_("Show only the messages for the selected project"));