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:
authorRay Molenkamp <github@lazydodo.com>2019-05-25 21:58:14 +0300
committerRay Molenkamp <github@lazydodo.com>2019-05-25 21:58:14 +0300
commit24024f09c7c664a82fbdefde76553fb8c2046994 (patch)
tree6b5465ab10f7dfd3e77d60b30aa4e567041d343e /intern/ghost
parent817a51f26fd4a01e51be50b005bc1e1003e4fe82 (diff)
ghost/windows: Fix Build warnings with MSVC.
The order of the initializers did not follow the order they were declared in the class definition leading to warning C5038
Diffstat (limited to 'intern/ghost')
-rw-r--r--intern/ghost/intern/GHOST_ImeWin32.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/ghost/intern/GHOST_ImeWin32.cpp b/intern/ghost/intern/GHOST_ImeWin32.cpp
index 9ad12cb0e63..104b0f67c77 100644
--- a/intern/ghost/intern/GHOST_ImeWin32.cpp
+++ b/intern/ghost/intern/GHOST_ImeWin32.cpp
@@ -31,9 +31,9 @@
# include "utfconv.h"
GHOST_ImeWin32::GHOST_ImeWin32()
- : ime_status_(false),
+ : is_composing_(false),
+ ime_status_(false),
input_language_id_(LANG_USER_DEFAULT),
- is_composing_(false),
system_caret_(false),
caret_rect_(-1, -1, 0, 0),
is_first(true),