mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=9713
This commit is contained in:
parent
d6d5922904
commit
894f813dd8
|
@ -292,10 +292,8 @@ void CBOINCBaseView::OnListDeselected(wxListEvent& event) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
wxString CBOINCBaseView::OnListGetItemText(
|
wxString CBOINCBaseView::OnListGetItemText(long WXUNUSED(item), long WXUNUSED(column)) const {
|
||||||
long WXUNUSED(item), long WXUNUSED(column)
|
return wxString(wxT("Undefined"));
|
||||||
) const {
|
|
||||||
return wxString("Undefined");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -472,8 +470,8 @@ void CBOINCBaseView::UpdateWebsiteSelection(long lControlGroup, PROJECT* project
|
||||||
// Project defined urls
|
// Project defined urls
|
||||||
for (i=0;(i<project->gui_urls.size())&&(i<=ID_TASK_PROJECT_WEB_PROJDEF_MAX);i++) {
|
for (i=0;(i<project->gui_urls.size())&&(i<=ID_TASK_PROJECT_WEB_PROJDEF_MAX);i++) {
|
||||||
pItem = new CTaskItem(
|
pItem = new CTaskItem(
|
||||||
_(wxString(project->gui_urls[i].name.c_str(), wxConvUTF8)),
|
wxGetTranslation(wxString(project->gui_urls[i].name.c_str(), wxConvUTF8)),
|
||||||
_(wxString(project->gui_urls[i].description.c_str(), wxConvUTF8)),
|
wxGetTranslation(wxString(project->gui_urls[i].description.c_str(), wxConvUTF8)),
|
||||||
wxString(project->gui_urls[i].url.c_str(), wxConvUTF8),
|
wxString(project->gui_urls[i].url.c_str(), wxConvUTF8),
|
||||||
ID_TASK_PROJECT_WEB_PROJDEF_MIN + 1 + i
|
ID_TASK_PROJECT_WEB_PROJDEF_MIN + 1 + i
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue