Rename function that was ambiguous from a monolithic perspective.

Cures one monolithic build issue with CMake.
This commit is contained in:
Juergen Spitzmueller 2015-11-16 08:20:54 +01:00
parent b423c59d3c
commit 2a223b0933

View File

@ -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")},