]> git.ipfire.org Git - people/amarx/ipfire-3.x.git/blob - doxygen/patches/doxygen-1.8.3-multilib.patch
pdns: Update to version 3.4.7
[people/amarx/ipfire-3.x.git] / doxygen / patches / doxygen-1.8.3-multilib.patch
1 diff -up doxygen-1.8.3/src/htmlgen.cpp.multilib doxygen-1.8.3/src/htmlgen.cpp
2 --- doxygen-1.8.3/src/htmlgen.cpp.multilib 2012-12-25 11:27:52.000000000 +0100
3 +++ doxygen-1.8.3/src/htmlgen.cpp 2013-01-02 17:08:57.559028518 +0100
4 @@ -125,6 +125,17 @@ static unsigned char tab_b_png[36] =
5 205, 207, 209, 211, 213, 217, 219, 206, 188
6 };
7
8 +static unsigned char nav_g_png[95] = {
9 +0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d,
10 +0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06,
11 +0x08, 0x06, 0x00, 0x00, 0x00, 0x02, 0x10, 0xf4, 0x31, 0x00, 0x00, 0x00,
12 +0x26, 0x49, 0x44, 0x41, 0x54, 0x78, 0x01, 0xed, 0xdd, 0x31, 0x0d, 0x00,
13 +0x00, 0x08, 0x03, 0xc1, 0x4f, 0x48, 0x17, 0x66, 0x84, 0xe1, 0x5f, 0x0d,
14 +0x2d, 0x3e, 0x7e, 0xb8, 0xe5, 0x4d, 0x20, 0x69, 0xcb, 0x4d, 0xe8, 0xc0,
15 +0x83, 0x07, 0x07, 0x0f, 0x53, 0x00, 0xbd, 0xfc, 0x82, 0x3c, 0x05, 0x00,
16 +0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
17 +};
18 +
19 // hovering tab background luma
20 static unsigned char tab_h_png[36] =
21 {
22 @@ -824,6 +835,7 @@ static ColoredImgDataItem colored_tab_da
23 { "tab_s.png", 1, 36, tab_s_png, 0 },
24 { "nav_h.png", 1, 12, header_png, 0 },
25 { "nav_f.png", 1, 56, func_header_png, 0 },
26 + { "nav_g.png", 1, 6, nav_g_png, 0 },
27 { "bc_s.png", 8, 30, bc_s_png, bc_s_a_png },
28 { "doxygen.png", 104,31, doxygen_png, doxygen_a_png },
29 { "closed.png", 9, 9, closed_png, closed_a_png },
30 @@ -1502,13 +1514,6 @@ void HtmlGenerator::writeTabData()
31 Doxygen::indexList->addStyleSheetFile("tabs.css");
32 QCString dname=Config_getString("HTML_OUTPUT");
33 writeColoredImgData(dname,colored_tab_data);
34 -
35 - {
36 - unsigned char shadow[6] = { 5, 5, 5, 5, 5, 5 };
37 - unsigned char shadow_alpha[6] = { 80, 60, 40, 20, 10, 0 };
38 - ColoredImage img(1,6,shadow,shadow_alpha,0,0,100);
39 - img.save(dname+"/nav_g.png");
40 - }
41 }
42
43 void HtmlGenerator::writeSearchData(const char *dir)