Made the various event handler arrays const.
This commit is contained in:
parent
61f7316d56
commit
51e6028951
|
@ -1,34 +1,34 @@
|
||||||
// 5 december 2014
|
// 5 december 2014
|
||||||
|
|
||||||
static handlerfunc keyDownHandlers[] = {
|
static consst handlerfunc keyDownHandlers[] = {
|
||||||
NULL,
|
NULL,
|
||||||
};
|
};
|
||||||
|
|
||||||
static handlerfunc keyUpHandlers[] = {
|
static const handlerfunc keyUpHandlers[] = {
|
||||||
NULL,
|
NULL,
|
||||||
};
|
};
|
||||||
|
|
||||||
static handlerfunc charHandlers[] = {
|
static const handlerfunc charHandlers[] = {
|
||||||
NULL,
|
NULL,
|
||||||
};
|
};
|
||||||
|
|
||||||
static handlerfunc mouseMoveHandlers[] = {
|
static const handlerfunc mouseMoveHandlers[] = {
|
||||||
NULL,
|
NULL,
|
||||||
};
|
};
|
||||||
|
|
||||||
static handlerfunc mouseLeaveHandlers[] = {
|
static const handlerfunc mouseLeaveHandlers[] = {
|
||||||
NULL,
|
NULL,
|
||||||
};
|
};
|
||||||
|
|
||||||
static handlerfunc lbuttonDownHandlers[] = {
|
static const handlerfunc lbuttonDownHandlers[] = {
|
||||||
NULL,
|
NULL,
|
||||||
};
|
};
|
||||||
|
|
||||||
static handlerufnc lbuttonUpHandlers[] = {
|
static const handlerufnc lbuttonUpHandlers[] = {
|
||||||
NULL,
|
NULL,
|
||||||
};
|
};
|
||||||
|
|
||||||
static handlerfunc mouseWheelHandlers[] = {
|
static const handlerfunc mouseWheelHandlers[] = {
|
||||||
NULL,
|
NULL,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue