From b3a0ebe7b6d4a600acfc105b09dd05fb355b6b8a Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sun, 15 Sep 2024 15:55:21 +0200 Subject: [PATCH] fix: Some merge issues --- CMakeLists.txt | 2 +- cmake/build_helpers.cmake | 3 --- .../imgui/ColorTextEditor/source/TextEditor.cpp | 8 -------- 3 files changed, 1 insertion(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 67cd0e952..75dee6f3f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,8 +37,8 @@ include("${IMHEX_BASE_FOLDER}/cmake/build_helpers.cmake") # Setup project loadVersion(IMHEX_VERSION IMHEX_VERSION_PLAIN) setVariableInParent(IMHEX_VERSION ${IMHEX_VERSION}) -configureCMake() +configureCMake() project(imhex LANGUAGES C CXX VERSION ${IMHEX_VERSION_PLAIN} diff --git a/cmake/build_helpers.cmake b/cmake/build_helpers.cmake index a4a3b5ad4..31518ec0d 100644 --- a/cmake/build_helpers.cmake +++ b/cmake/build_helpers.cmake @@ -307,9 +307,6 @@ endfunction() macro(configureCMake) message(STATUS "Configuring ImHex v${IMHEX_VERSION}") - # Enable C and C++ languages - enable_language(C CXX) - set(CMAKE_POSITION_INDEPENDENT_CODE ON CACHE BOOL "Enable position independent code for all targets" FORCE) # Configure use of recommended build tools diff --git a/lib/third_party/imgui/ColorTextEditor/source/TextEditor.cpp b/lib/third_party/imgui/ColorTextEditor/source/TextEditor.cpp index ef630831e..02c033629 100644 --- a/lib/third_party/imgui/ColorTextEditor/source/TextEditor.cpp +++ b/lib/third_party/imgui/ColorTextEditor/source/TextEditor.cpp @@ -392,14 +392,6 @@ TextEditor::Coordinates TextEditor::FindWordEnd(const Coordinates &aFrom) const while (cindex < (line.size()) && !isWordChar(line[cindex].mChar)) ++cindex; - if (prevspace != !!isspace(c)) { - if (isspace(c)) - while (cindex < (int)line.size() && isspace(line[cindex].mChar)) - ++cindex; - break; - } - cindex += d; - if (line[cindex-1].mChar == '\"') --cindex; return Coordinates(aFrom.mLine, GetCharacterColumn(aFrom.mLine, cindex));