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>2019-04-16 17:40:47 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-16 17:40:47 +0300
commitdbc058301bf516a53b92b9c45b5c4f3ecc33ecf4 (patch)
treed93fb65825e40300f68707ae75718773bc73678f /source/blender/windowmanager
parentd217b23f735cb9232d86c7730ed0a0aa45e3074e (diff)
Cleanup: trailing commas
Diffstat (limited to 'source/blender/windowmanager')
-rw-r--r--source/blender/windowmanager/WM_types.h2
-rw-r--r--source/blender/windowmanager/intern/wm_window.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/windowmanager/WM_types.h b/source/blender/windowmanager/WM_types.h
index 9e18a655903..0dfa24b8cda 100644
--- a/source/blender/windowmanager/WM_types.h
+++ b/source/blender/windowmanager/WM_types.h
@@ -517,7 +517,7 @@ typedef enum { /* motion progress, for modal handlers */
P_STARTING, /* <-- */
P_IN_PROGRESS, /* <-- only these are sent for NDOF motion*/
P_FINISHING, /* <-- */
- P_FINISHED
+ P_FINISHED,
} wmProgress;
#ifdef WITH_INPUT_NDOF
diff --git a/source/blender/windowmanager/intern/wm_window.c b/source/blender/windowmanager/intern/wm_window.c
index a1dc822dc97..7994947d943 100644
--- a/source/blender/windowmanager/intern/wm_window.c
+++ b/source/blender/windowmanager/intern/wm_window.c
@@ -1109,7 +1109,7 @@ typedef enum {
SHIFT = 's',
CONTROL = 'c',
ALT = 'a',
- OS = 'C'
+ OS = 'C',
} modifierKeyType;
/* check if specified modifier key type is pressed */