From e18b7c5c25ce458596f267e0f853e07f9ad125f6 Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Thu, 10 Jul 2008 09:45:16 +0000 Subject: [PATCH] MGR: Change wxEVT_DRAW_BARGRAPH from 10000 to 12000 to avoid possible conflict with wxEVT_FRAME_ALERT svn path=/trunk/boinc/; revision=15587 --- checkin_notes | 7 +++++++ clientgui/BOINCListCtrl.h | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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),