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: