From 4a10af2bda0bdc647f0757c2bf459598c8244930 Mon Sep 17 00:00:00 2001 From: ocornut Date: Wed, 11 Mar 2020 13:24:48 +0100 Subject: [PATCH] Unicode, Windows: Remove stringapiset.h include (breaks vs2010 and seems unnecessary?). (#2541, #2815) --- docs/TODO.txt | 1 + imgui.cpp | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/TODO.txt b/docs/TODO.txt index f13d85e15..9ba3a9842 100644 --- a/docs/TODO.txt +++ b/docs/TODO.txt @@ -253,6 +253,7 @@ It's mostly a bunch of personal notes, probably incomplete. Feel free to query i - log: let user copy any window content to clipboard easily (CTRL+C on windows? while moving it? context menu?). code is commented because it fails with multiple Begin/End pairs. - log: obsolete LogButtons() all together. - log: LogButtons() options for specifying depth and/or hiding depth slider + - log: enabling log ends up pushing and growing vertices buffersbecause we don't distinguish layout vs render clipping - filters: set a current filter that tree node can automatically query to hide themselves - filters: handle wild-cards (with implicit leading/trailing *), reg-exprs diff --git a/imgui.cpp b/imgui.cpp index 1a26dd1e6..f1424da70 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -830,7 +830,6 @@ CODE #else #include #endif -#include // MultiByteToWideChar, WideCharToMultiByte #if defined(WINAPI_FAMILY) && (WINAPI_FAMILY == WINAPI_FAMILY_APP) // UWP doesn't have all Win32 functions #define IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS #define IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS