From 341ea90482229489ab7cb5a2ceb2a0b847bc67bf Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 13 Mar 2007 19:43:52 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=12217 --- checkin_notes | 6 ++++++ clientgui/ProjectInfoPage.cpp | 2 +- clientgui/ProjectInfoPage.h | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/checkin_notes b/checkin_notes index 5bd7c5158b..7ec212bb0b 100755 --- a/checkin_notes +++ b/checkin_notes @@ -2413,3 +2413,9 @@ David 13 Mar 2007 str_util.C sched/ sched_config.C + +David 13 Mar 2007 + - compile fix + + clientgui/ + ProjectInfoPage.cpp,h diff --git a/clientgui/ProjectInfoPage.cpp b/clientgui/ProjectInfoPage.cpp index 0a64c03b73..b7e3ce3651 100644 --- a/clientgui/ProjectInfoPage.cpp +++ b/clientgui/ProjectInfoPage.cpp @@ -285,7 +285,7 @@ void CProjectInfoPage::OnPageChanged( wxWizardExEvent& event ) { // Populate the combo box with project information // - pDoc->rpc.get_project_list(pl); + pDoc->rpc.get_all_projects_list(pl); for (i=0; iAppend(wxString(pl.projects[i]->name.c_str(), wxConvUTF8)); } diff --git a/clientgui/ProjectInfoPage.h b/clientgui/ProjectInfoPage.h index 4cfda9ba01..89291485c4 100644 --- a/clientgui/ProjectInfoPage.h +++ b/clientgui/ProjectInfoPage.h @@ -95,7 +95,7 @@ public: wxString m_strProjectURL; ////@end CProjectInfoPage member variables - PROJECTLIST pl; + ALL_PROJECTS_LIST pl; }; #endif // _WIZ_PROJECTINFOPAGE_H_