[PATCH] fix regression on file reference page
Michael Stahl <[email protected]> Wed, 29 May 2013 16:57:30 +0200
| Newsgroups | gmane.text.doxygen.devel |
|---|---|
| Organization | Red Hat |
| Message-ID | <[email protected]> |
sadly there was a stupid copy/paste error in my UNO IDL patch, causing namespaces to be listed twice on the file reference pages, which is fixed by the attached patch; sorry about that. regards, michael ------------------------------------------------------------------------------ Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET Get 100% visibility into your production application - at no cost. Code-level diagnostics for performance bottlenecks with <2% overhead Download for free and get started troubleshooting in minutes. http://p.sf.net/sfu/appdyn_d2d_ap1 _______________________________________________ Doxygen-develop mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/doxygen-develop
0001-fix-Constant-Groups-regression-on-file-pages.patch
(text/x-patch, 1.3 KB)
>From 388163a0b0b1d71f1b456589de99e818c467f377 Mon Sep 17 00:00:00 2001 From: Michael Stahl <[email protected]> Date: Wed, 29 May 2013 16:29:04 +0200 Subject: [PATCH] fix "Constant Groups" regression on file pages Due to a copy/paste error in the UNO IDL patch the "Namespaces" listed on the "File Reference" pages are erroneously duplicated. (thanks to Stephan Bergmann for finding this problem) --- src/layout.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layout.cpp b/src/layout.cpp index c2b1ac5..010c850 100644 --- a/src/layout.cpp +++ b/src/layout.cpp @@ -582,7 +582,7 @@ class LayoutParser : public QXmlDefaultHandler SrcLangExt_Fortran,theTranslator->trModules() ))); m_sHandler.insert("file/memberdecl/constantgroups", - new StartElementHandlerSection(this,LayoutDocEntry::FileNamespaces,&LayoutParser::startSectionEntry, + new StartElementHandlerSection(this,LayoutDocEntry::FileConstantGroups,&LayoutParser::startSectionEntry, theTranslator->trConstantGroups())); m_sHandler.insert("file/memberdecl/defines", new StartElementHandlerMember(this,&LayoutParser::startMemberDeclEntry, -- 1.8.1.4