diff options
Diffstat (limited to 'src/definition.cpp')
-rw-r--r-- | src/definition.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/definition.cpp b/src/definition.cpp index 2abd726..911e156 100644 --- a/src/definition.cpp +++ b/src/definition.cpp @@ -1329,7 +1329,7 @@ void Definition::writePathFragment(OutputList &ol) const ol.writeString(" </li>\n"); } -void Definition::writeNavigationPath(OutputList &ol) const +void Definition::writeNavigationPath(OutputList &ol,bool showSearchInfo) const { static bool generateTreeView = Config_getBool("GENERATE_TREEVIEW"); @@ -1340,6 +1340,10 @@ void Definition::writeNavigationPath(OutputList &ol) const { ol.writeString("</div>\n"); } + if (showSearchInfo) + { + ol.writeSearchInfo(); + } ol.writeString(" <div id=\"nav-path\" class=\"navpath\">\n"); ol.writeString(" <ul>\n"); |