diff --git a/checkin_notes b/checkin_notes index d6b23f1457..3d1c7f5074 100644 --- a/checkin_notes +++ b/checkin_notes @@ -5631,3 +5631,10 @@ Rom 9 July 2008 win_build/installerv2/redist/Windows/src/boinccas/ CAMigrateBOINCData.cpp CAVerifyInstallDirectories.cpp + +Charlie 10 July 2008 + - MGR: Change wxEVT_DRAW_BARGRAPH from 10000 to 12000 to avoid possible + conflict with wxEVT_FRAME_ALERT. + + clientgui/ + BOINCListCtrl.h diff --git a/clientgui/BOINCListCtrl.h b/clientgui/BOINCListCtrl.h index ef3ab6adfd..7491bfe7e9 100644 --- a/clientgui/BOINCListCtrl.h +++ b/clientgui/BOINCListCtrl.h @@ -98,7 +98,7 @@ public: }; BEGIN_DECLARE_EVENT_TYPES() -DECLARE_EVENT_TYPE( wxEVT_DRAW_BARGRAPH, 10000 ) +DECLARE_EVENT_TYPE( wxEVT_DRAW_BARGRAPH, 12000 ) END_DECLARE_EVENT_TYPES() #define EVT_DRAW_BARGRAPH(fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_DRAW_BARGRAPH, -1, -1, (wxObjectEventFunction) (wxEventFunction) &fn, NULL),