mirror of https://github.com/BOINC/boinc.git
- MGR: Check to see if keyboard accelerators can be redefined on the fly.
clientgui/ DlgEventLog.cpp svn path=/trunk/boinc/; revision=23367
This commit is contained in:
parent
3b1b7e9204
commit
da2ca8d428
|
@ -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
|
||||
|
|
|
@ -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"));
|
||||
|
|
Loading…
Reference in New Issue