From 9379f19c19e4bc6142e004792330f77806c33361 Mon Sep 17 00:00:00 2001 From: Cjacker Date: Wed, 25 Oct 2017 15:09:09 +0800 Subject: [PATCH] Use tab instead of space to match original source format --- source/detail/platform_spec_posix.cpp | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/source/detail/platform_spec_posix.cpp b/source/detail/platform_spec_posix.cpp index 58e936ee..906aaf93 100644 --- a/source/detail/platform_spec_posix.cpp +++ b/source/detail/platform_spec_posix.cpp @@ -835,19 +835,19 @@ namespace detail i->second->reinstate(); i->second->pos = pos; } - auto addr = i->second; - XPoint spot; - XVaNestedList list; - if(addr->input_context) { - spot.x = pos.x; - spot.y = pos.y + addr->size.height; - list = ::XVaCreateNestedList(0, XNSpotLocation, &spot, - XNForeground, 0, - XNBackground, 0, - (void *)0); - ::XSetICValues(addr->input_context, XNPreeditAttributes, list, NULL); - ::XFree(list); - } + auto addr = i->second; + XPoint spot; + XVaNestedList list; + if(addr->input_context) { + spot.x = pos.x; + spot.y = pos.y + addr->size.height; + list = ::XVaCreateNestedList(0, XNSpotLocation, &spot, + XNForeground, 0, + XNBackground, 0, + (void *)0); + ::XSetICValues(addr->input_context, XNPreeditAttributes, list, NULL); + ::XFree(list); + } } void platform_spec::caret_visible(native_window_type wd, bool vis)