From 2a223b093382d37eacdcf258c28a66b1b2486b44 Mon Sep 17 00:00:00 2001 From: Juergen Spitzmueller Date: Mon, 16 Nov 2015 08:20:54 +0100 Subject: [PATCH] Rename function that was ambiguous from a monolithic perspective. Cures one monolithic build issue with CMake. --- src/support/debug.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/support/debug.cpp b/src/support/debug.cpp index f44f7fcdd9..538b487760 100644 --- a/src/support/debug.cpp +++ b/src/support/debug.cpp @@ -31,14 +31,14 @@ namespace lyx { namespace { -struct ErrorItem { +struct DebugErrorItem { Debug::Type level; char const * name; char const * desc; }; -ErrorItem errorTags[] = { +DebugErrorItem errorTags[] = { { Debug::NONE, "none", N_("No debugging messages")}, { Debug::INFO, "info", N_("General information")}, { Debug::INIT, "init", N_("Program initialisation")}, -- 2.39.5