]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
libvaladoc: Handle missing Content.List.Bullet.ORDERED in switch
authorRico Tzschichholz <ricotz@ubuntu.com>
Sun, 31 Mar 2019 08:25:56 +0000 (10:25 +0200)
committerRico Tzschichholz <ricotz@ubuntu.com>
Wed, 10 Apr 2019 14:26:19 +0000 (16:26 +0200)
libvaladoc/documentation/documentationparser.vala

index ca822443e20f9692f59e0b188308cea112a61651..0a5a0d04c643c13a4e12e1858406238c7e772ce1 100644 (file)
@@ -262,6 +262,8 @@ public class Valadoc.DocumentationParser : Object, ResourceLocator {
                        return ".";
                case Content.List.Bullet.UNORDERED:
                        return "*";
+               case Content.List.Bullet.ORDERED:
+                       return "#";
                case Content.List.Bullet.ORDERED_NUMBER:
                        return "1.";
                case Content.List.Bullet.ORDERED_LOWER_CASE_ALPHA: