*** empty log message ***

svn path=/trunk/boinc/; revision=11549
This commit is contained in:
Charlie Fenton 2006-11-19 12:18:17 +00:00
parent 4d8cc8367e
commit 869aa34aab
3 changed files with 15 additions and 3 deletions

View File

@ -12690,3 +12690,9 @@ Bruce 19 Nov 2006
sched/
file_deleter.C
Charlie 19 Nov 2006
- MGR: Fix windows compile errors.
clientgui/
sg_ProjectsComponent.cpp
ViewMessages.cpp

View File

@ -89,11 +89,13 @@ CViewMessages::CViewMessages(wxNotebook* pNotebook) :
pItem = new CTaskItem(
_("Copy selected messages"),
#ifdef __WXMAC__
_("Copy the selected messages to the clipboard. "
"You can select multiple messages by holding down the shift "
#ifdef __WXMAC__
"or command key while clicking on messages."),
#else
_("Copy the selected messages to the clipboard. "
"You can select multiple messages by holding down the shift "
"or control key while clicking on messages."),
#endif
ID_TASK_MESSAGES_COPYSELECTED

View File

@ -180,21 +180,25 @@ void CPanelMessages::CreateControls()
wxButton* itemButton2 = new wxButton;
itemButton2->Create(this, ID_COPYSELECTED, _("Copy selected messages"), wxDefaultPosition, wxDefaultSize, 0);
itemButton2->SetHelpText(
#ifdef __WXMAC__
_("Copy the selected messages to the clipboard. "
"You can select multiple messages by holding down the shift "
#ifdef __WXMAC__
"or command key while clicking on messages.")
#else
_("Copy the selected messages to the clipboard. "
"You can select multiple messages by holding down the shift "
"or control key while clicking on messages.")
#endif
);
#if wxUSE_TOOLTIPS
itemButton2->SetToolTip(
#ifdef __WXMAC__
_("Copy the selected messages to the clipboard. "
"You can select multiple messages by holding down the shift "
#ifdef __WXMAC__
"or command key while clicking on messages.")
#else
_("Copy the selected messages to the clipboard. "
"You can select multiple messages by holding down the shift "
"or control key while clicking on messages.")
#endif
);