From: Juergen Spitzmueller Date: Mon, 16 Nov 2015 07:20:54 +0000 (+0100) Subject: Rename function that was ambiguous from a monolithic perspective. X-Git-Tag: 2.2.0alpha2~96 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=2a223b093382d37eacdcf258c28a66b1b2486b44;p=lyx.git Rename function that was ambiguous from a monolithic perspective. Cures one monolithic build issue with CMake. --- 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")},