MGR: Filter wxEVT_TASKBAR_MOVE events only on Windows

svn path=/trunk/boinc/; revision=16437
This commit is contained in:
Charlie Fenton 2008-11-06 03:15:12 +00:00
parent 9ae54f7001
commit 5e78b8498b
2 changed files with 4 additions and 0 deletions

View File

@ -9274,9 +9274,11 @@ Rom 5 Nov 2008
Charlie 4 Nov 2008
- Mac: Add new source files mac_address.cpp,.h to XCode project.
- MGR: Fix compiler warnings on non-Windows builds.
- MGR: Filter wxEVT_TASKBAR_MOVE events only on Windows.
clientgui/
BOINCBaseFrame.cpp
BOINCGUIApp.cpp
BOINCTaskBar.cpp
mac_build/
boinc.xcodeproj/

View File

@ -1005,9 +1005,11 @@ int CBOINCGUIApp::FilterEvent(wxEvent &event) {
return false;
}
#ifdef __WXMSW__
if (theEventType == wxEVT_TASKBAR_MOVE) {
return false;
}
#endif
return -1;
#else