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>2020-01-13 06:58:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-01-13 07:00:15 +0300
commitddb958ae998c1fc1a6bfb068e8dd545ebf6ed160 (patch)
treeb80728e597422e368b843bae13be759ffb0b1100 /source/blender/windowmanager/intern/wm_event_query.c
parentd5042c42501c4d12f4e6562c32caaa88e4e6cacd (diff)
Cleanup: remove hack that set operator id in the wmEvent
This can be replaced by passing an argument.
Diffstat (limited to 'source/blender/windowmanager/intern/wm_event_query.c')
-rw-r--r--source/blender/windowmanager/intern/wm_event_query.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/windowmanager/intern/wm_event_query.c b/source/blender/windowmanager/intern/wm_event_query.c
index e37f3b946fe..86d92a473ff 100644
--- a/source/blender/windowmanager/intern/wm_event_query.c
+++ b/source/blender/windowmanager/intern/wm_event_query.c
@@ -68,7 +68,7 @@ void WM_event_print(const wmEvent *event)
printf(
"wmEvent type:%d / %s, val:%d / %s,\n"
" shift:%d, ctrl:%d, alt:%d, oskey:%d, keymodifier:%d,\n"
- " mouse:(%d,%d), ascii:'%c', utf8:'%.*s', keymap_idname:%s, pointer:%p\n",
+ " mouse:(%d,%d), ascii:'%c', utf8:'%.*s', pointer:%p\n",
event->type,
type_id,
event->val,
@@ -83,7 +83,6 @@ void WM_event_print(const wmEvent *event)
event->ascii,
BLI_str_utf8_size(event->utf8_buf),
event->utf8_buf,
- event->keymap_idname,
(const void *)event);
#ifdef WITH_INPUT_NDOF