Skip to content

Commit

Permalink
Merge pull request #9837 from albert-github/feature/bug_debug_consist
Browse files Browse the repository at this point in the history
Consistency in used debug terminology
  • Loading branch information
doxygen committed Feb 7, 2023
2 parents e144254 + ff6b532 commit 8887ee5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/layout.cpp
Expand Up @@ -1575,7 +1575,7 @@ void LayoutDocManager::init()
QCString layout_default = ResourceMgr::instance().getAsString(layoutFile);
parser.parse(layoutFile,layout_default.data(),Debug::isFlagSet(Debug::Lex_xml),
[&]() { DebugLex::print(Debug::Lex_xml,"Entering","libxml/xml.l",layoutFile); },
[&]() { DebugLex::print(Debug::Lex_xml,"Leaving", "libxml/xml.l",layoutFile); }
[&]() { DebugLex::print(Debug::Lex_xml,"Finished", "libxml/xml.l",layoutFile); }
);
}

Expand Down Expand Up @@ -1621,7 +1621,7 @@ void LayoutDocManager::parse(const QCString &fileName)
layoutParser.setDocumentLocator(&parser);
parser.parse(fileName.data(),fileToString(fileName).data(),Debug::isFlagSet(Debug::Lex_xml),
[&]() { DebugLex::print(Debug::Lex_xml,"Entering","libxml/xml.l",qPrint(fileName)); },
[&]() { DebugLex::print(Debug::Lex_xml,"Leaving", "libxml/xml.l",qPrint(fileName)); }
[&]() { DebugLex::print(Debug::Lex_xml,"Finished", "libxml/xml.l",qPrint(fileName)); }
);
}

Expand Down
2 changes: 1 addition & 1 deletion src/tagreader.cpp
Expand Up @@ -1701,7 +1701,7 @@ void parseTagFile(const std::shared_ptr<Entry> &root,const char *fullName)
tagFileParser.setDocumentLocator(&parser);
parser.parse(fullName,inputStr.data(),Debug::isFlagSet(Debug::Lex_xml),
[&]() { DebugLex::print(Debug::Lex_xml,"Entering","libxml/xml.l",fullName); },
[&]() { DebugLex::print(Debug::Lex_xml,"Leaving", "libxml/xml.l",fullName); }
[&]() { DebugLex::print(Debug::Lex_xml,"Finished", "libxml/xml.l",fullName); }
);
tagFileParser.buildLists(root);
tagFileParser.addIncludes();
Expand Down

0 comments on commit 8887ee5

Please sign in to comment.