From 2667f1ac82781e63f30b6d4246952890d1f201ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Mon, 6 Jun 2016 20:25:58 -0700 Subject: [PATCH] Cleanup. --- 3rdparty/.editorconfig | 4 ++++ 3rdparty/ocornut-imgui/imgui_user.inl | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/3rdparty/.editorconfig b/3rdparty/.editorconfig index 214695015..25d102976 100644 --- a/3rdparty/.editorconfig +++ b/3rdparty/.editorconfig @@ -20,6 +20,10 @@ indent_size = 4 indent_style = space indent_size = 4 +[ocornut-imgui/*.inl] +indent_style = space +indent_size = 4 + [pvrtc/*] indent_style = space indent_size = 4 diff --git a/3rdparty/ocornut-imgui/imgui_user.inl b/3rdparty/ocornut-imgui/imgui_user.inl index 6a2e1e5b6..b064a6d4d 100644 --- a/3rdparty/ocornut-imgui/imgui_user.inl +++ b/3rdparty/ocornut-imgui/imgui_user.inl @@ -9,7 +9,7 @@ namespace ImGui : Ptr(NULL) { if (NULL != rhs.Ptr - && 0 != strcmp(rhs.Ptr, "")) + && 0 != strcmp(rhs.Ptr, "")) { Ptr = ImStrdup(rhs.Ptr); } @@ -19,7 +19,7 @@ namespace ImGui : Ptr(NULL) { if (NULL != rhs - && 0 != strcmp(rhs, "")) + && 0 != strcmp(rhs, "")) { Ptr = ImStrdup(rhs); } @@ -47,7 +47,7 @@ namespace ImGui Clear(); if (NULL != rhs - && 0 != strcmp(rhs, "")) + && 0 != strcmp(rhs, "")) { Ptr = ImStrdup(rhs); }