mirror of https://github.com/BOINC/boinc.git
- MGR: Add event map to the properties dialog.
clientgui/ DlgItemProperties.cpp, .h svn path=/trunk/boinc/; revision=20977
This commit is contained in:
parent
4e917eb64e
commit
58d16e3108
|
@ -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
|
|
@ -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) {
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue