Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2016-04-17 23:20:42 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-04-19 05:18:19 +0300
commit74b0591d420ddccca1c6435dc70a154aaaf8eed1 (patch)
tree03ffb09c979c6aede7c2e89c364ff3675444c326 /source/blender/windowmanager/wm_cursors.h
parent3068ea34e414e7af6d20af7ab92c69cbd9a33414 (diff)
Cleanup: pass event args as const
Diffstat (limited to 'source/blender/windowmanager/wm_cursors.h')
-rw-r--r--source/blender/windowmanager/wm_cursors.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/wm_cursors.h b/source/blender/windowmanager/wm_cursors.h
index e99f80f53cd..c695a12f52c 100644
--- a/source/blender/windowmanager/wm_cursors.h
+++ b/source/blender/windowmanager/wm_cursors.h
@@ -111,7 +111,7 @@ enum {
struct wmWindow;
struct wmEvent;
-int wm_cursor_arrow_move(struct wmWindow *win, struct wmEvent *event);
+bool wm_cursor_arrow_move(struct wmWindow *win, const struct wmEvent *event);
#endif /* __WM_CURSORS_H__ */