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
This commit is contained in:
Ray molenkamp 2019-05-25 12:58:14 -06:00
parent 817a51f26f
commit 24024f09c7
1 changed files with 2 additions and 2 deletions

View File

@ -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),