Kaydet (Commit) 9a854751 authored tarafından Colomban Wendling's avatar Colomban Wendling

Fix GtkDoc header generation script to handle references inside typedef

üst 5858bc3c
......@@ -370,7 +370,7 @@ def main(args):
for f in h_files:
if not (f.find("compoundname").text.endswith("private.h")):
for n0 in f.xpath(".//*/memberdef[@kind='typedef' and @prot='public']"):
if not (n0.find("type").text.startswith("enum")):
if not (DoxygenProcess.stringify_children(n0.find("type")).startswith("enum")):
e = DoxyTypedef.from_memberdef(n0)
typedefs.append(e)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment