]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
doclets/devhelp: Imrpove page titles
authorFlorian Brosch <flo.brosch@gmail.com>
Sat, 21 Jul 2012 20:11:48 +0000 (22:11 +0200)
committerFlorian Brosch <flo.brosch@gmail.com>
Sat, 21 Jul 2012 20:11:48 +0000 (22:11 +0200)
src/doclets/devhelp/doclet.vala

index ef4bb66aed2c8b288cd5225166edcb36a1965af2..26b8c55ce0f8801980abf4e1a7aa8c5abfd52ca0 100644 (file)
@@ -135,7 +135,7 @@ public class Valadoc.Devhelp.Doclet : Valadoc.Html.BasicDoclet {
                        GLib.FileStream file = GLib.FileStream.open (rpath, "w");
                        writer = new Html.MarkupWriter (file);
                        _renderer.set_writer (writer);
-                       write_file_header (css_path, js_path, node.get_full_name ());
+                       write_file_header (css_path, js_path, node.get_full_name () + " &ndash; " + node.package.name);
                        write_symbol_content (node);
                        write_file_footer ();
                        file = null;
@@ -158,7 +158,7 @@ public class Valadoc.Devhelp.Doclet : Valadoc.Html.BasicDoclet {
                GLib.FileStream file = GLib.FileStream.open (rpath, "w");
                writer = new Html.MarkupWriter (file);
                _renderer.set_writer (writer);
-               write_file_header (css_path, js_path, node.get_full_name());
+               write_file_header (css_path, js_path, node.get_full_name() + " &ndash; " + node.package.name);
                write_symbol_content (node);
                write_file_footer ();
                file = null;