Lots of changes needed to get things building again after switching to wxWidgets master

This commit is contained in:
Robin Dunn
2018-02-09 15:15:01 -08:00
parent f1a24d4978
commit 87d7edab83
33 changed files with 219 additions and 65 deletions

View File

@@ -60,7 +60,9 @@ SECTIONS = [('return' , ':returns:'),
('note' , '.. note::'),
('see' , '.. seealso::'),
('todo' , '.. todo::'),
('par' , '')]
('pre' , ':precondition:'),
('par' , '')
]
# List of things to remove/ignore (there may be more)
@@ -256,10 +258,12 @@ DOXY_2_REST = [('@author:', '\n.. moduleauthor:: '),
('@kwarg', ':keyword'),
('@note:', '\n.. note:: '),
('@package:', '\n**Package:** '),
('@package', '\n**Package:** '),
('@package', '\n**Package:** '),
('@postcondition:', '\n:postcondition: '),
('@pre:', '\n:precondition: '),
('@precondition:', '\n:precondition: '),
('@pre', '\n:precondition: '),
('@precondition', '\n:precondition: '),
('@requires:', '\n:requires: '),
('@returns:', '\n:returns: '),
('@return:', '\n:returns: '),