Skip to content
Snippets Groups Projects
Commit df5f3bbc authored by Timur Pocheptsov's avatar Timur Pocheptsov
Browse files

Coverity fix (from Bertrand).

git-svn-id: http://root.cern.ch/svn/root/trunk@47218 27541ba8-7e3a-0410-8455-c3a389f83636
parent af16e9ad
No related branches found
No related tags found
No related merge requests found
......@@ -241,7 +241,8 @@ void TGLEventHandler::ExecuteEvent(Int_t event, Int_t px, Int_t py)
// Map our event EEventType (base/inc/Buttons.h) back to Event_t (base/inc/GuiTypes.h)
// structure, and call appropriate HandleXyzz() function
Event_t eventSt;
Event_t eventSt = { kOtherEvent, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
kFALSE, 0, 0, {0, 0, 0, 0, 0} };
eventSt.fX = px;
eventSt.fY = py;
eventSt.fState = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment