SHA256
8
0
forked from pool/doxygen

- Fix: Add missing jquery.js, dynsections.js & optional

svgpan.js to QCH file [bsc#1011331]
 + doxygen-fix-QCH-files.patch

OBS-URL: https://build.opensuse.org/package/show/devel:tools/doxygen?expand=0&rev=110
This commit is contained in:
2016-11-30 11:41:59 +00:00
committed by Git OBS Bridge
parent 0cc3ec644c
commit 48bea02f4c
3 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
From bf9415698e53d79b4b94bdf64a52be4347eb3150 Mon Sep 17 00:00:00 2001
From: "Friedrich W. H. Kossebau" <kossebau@kde.org>
Date: Sun, 30 Oct 2016 11:15:14 +0100
Subject: [PATCH] Fix: Add missing jquery.js, dynsections.js & optional
svgpan.js to QCH file
---
src/htmlgen.cpp | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp
index 5b4519b..0ca7182 100644
--- a/src/htmlgen.cpp
+++ b/src/htmlgen.cpp
@@ -1026,6 +1026,13 @@ void HtmlGenerator::writeStyleInfo(int part)
}
}
}
+
+ Doxygen::indexList->addStyleSheetFile("jquery.js");
+ Doxygen::indexList->addStyleSheetFile("dynsections.js");
+ if (Config_getBool(INTERACTIVE_SVG))
+ {
+ Doxygen::indexList->addStyleSheetFile("svgpan.js");
+ }
}
}