Forgot a parameter in uiAreaHandler.MouseCrossed().

This commit is contained in:
Pietro Gagliardi 2015-12-17 14:20:17 -05:00
parent 4e015cf4d6
commit e9247858d4
1 changed files with 1 additions and 1 deletions

2
ui.h
View File

@ -284,7 +284,7 @@ struct uiAreaHandler {
void (*MouseEvent)(uiAreaHandler *, uiArea *, uiAreaMouseEvent *);
// TODO document that on first show if the mouse is already in the uiArea then one gets sent with left=0
// TODO what about when the area is hidden and then shown again?
void (*MouseCrossed)(uiAreaHandler *, int left);
void (*MouseCrossed)(uiAreaHandler *, uiArea *, int left);
void (*DragBroken)(uiAreaHandler *, uiArea *);
int (*KeyEvent)(uiAreaHandler *, uiArea *, uiAreaKeyEvent *);
};