From 58d16e31087272cf7d2bc1caa5e4bee05f744891 Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Mon, 22 Mar 2010 15:54:17 +0000 Subject: [PATCH] - MGR: Add event map to the properties dialog. clientgui/ DlgItemProperties.cpp, .h svn path=/trunk/boinc/; revision=20977 --- checkin_notes | 6 ++++++ clientgui/DlgItemProperties.cpp | 4 +++- clientgui/DlgItemProperties.h | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/checkin_notes b/checkin_notes index 1be2fd5270..b960d8ea10 100644 --- a/checkin_notes +++ b/checkin_notes @@ -2018,3 +2018,9 @@ Charlie 19 Mar 2010 clientgui/ BOINCBaseView.cpp DlgEventLog.cpp + +Rom 22 Mar 2010 + - MGR: Add event map to the properties dialog. + + clientgui/ + DlgItemProperties.cpp, .h \ No newline at end of file diff --git a/clientgui/DlgItemProperties.cpp b/clientgui/DlgItemProperties.cpp index 0030128d64..62471ac64e 100755 --- a/clientgui/DlgItemProperties.cpp +++ b/clientgui/DlgItemProperties.cpp @@ -28,6 +28,9 @@ #include "error_numbers.h" IMPLEMENT_DYNAMIC_CLASS(CDlgItemProperties, wxDialog) + +BEGIN_EVENT_TABLE(CDlgItemProperties, wxDialog) +END_EVENT_TABLE() /* Constructor */ CDlgItemProperties::CDlgItemProperties(wxWindow* parent) : @@ -161,7 +164,6 @@ bool CDlgItemProperties::RestoreState() { return true; } - // show project properties // void CDlgItemProperties::renderInfos(PROJECT* project_in) { diff --git a/clientgui/DlgItemProperties.h b/clientgui/DlgItemProperties.h index d9ac6e2f8d..1eb49093eb 100755 --- a/clientgui/DlgItemProperties.h +++ b/clientgui/DlgItemProperties.h @@ -42,7 +42,7 @@ class CDlgItemProperties : public wxDialog { public: CDlgItemProperties(wxWindow* parent=NULL);//to act as standard constructor set a default value virtual ~CDlgItemProperties(); - // + // void renderInfos(PROJECT* project); void renderInfos(RESULT* result); private: