]> git.lyx.org Git - features.git/commitdiff
Rename function that was ambiguous from a monolithic perspective.
authorJuergen Spitzmueller <spitz@lyx.org>
Mon, 16 Nov 2015 07:20:54 +0000 (08:20 +0100)
committerJuergen Spitzmueller <spitz@lyx.org>
Mon, 16 Nov 2015 07:20:54 +0000 (08:20 +0100)
Cures one monolithic build issue with CMake.

src/support/debug.cpp

index f44f7fcdd980e5d8e5fa26cdd00b1502a30f28c9..538b4877600f3cd5d5f6715ff4b97155a71542f7 100644 (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")},