#!/bin/bash # finds undocumented classes in the current directory (recursive) type -p doxygen >/dev/null || exit filter= quiet=n if [ "$1" = "-q" ]; then filter=">/dev/null" quiet=y shift fi doxygen=$(mktemp -d) eval doxygen -g $doxygen/doxygen.cfg $filter sed -i "/HTML_OUTPUT/s|html|$doxygen/html|" $doxygen/doxygen.cfg sed -i '/GENERATE_LATEX/s/= YES/= NO/' $doxygen/doxygen.cfg sed -i '/RECURSIVE/s/= NO/= YES/' $doxygen/doxygen.cfg # do we have any arguments? if [ -n "$*" ]; then sed -i "/^INPUT[^_]/s|=.*|= $*|" $doxygen/doxygen.cfg fi eval doxygen $doxygen/doxygen.cfg $filter 2> $doxygen/errors.txt if [ "$quiet" == "n" ]; then echo echo "The following classes are undocumented:" echo fi cat $doxygen/errors.txt|grep -i 'Warning: Compound.*is not documented' rm -rf $doxygen # vim:set shiftwidth=4 softtabstop=4 expandtab: CN/libreoffice-7-4-LTS'>distro/CN/libreoffice-7-4-LTS LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/smoketest/smoketest.cxx
AgeCommit message (Expand)Author
2015-11-10loplugin:nullptr (automatic rewrite)Stephan Bergmann
2015-11-06loplugin:stringconstant: elide explicit ctor usage (manually due to macros)Stephan Bergmann
2015-11-04yyyyyNoel Grandin
2015-10-29com::sun::star->css in smoketest,sotNoel Grandin
2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann
2015-09-15Resolves: tdf#88206 replace cppu::WeakImplHelper* etc.Takeshi Abe
2015-08-07cppcheck:noExplicitConstructorNoel Grandin
2014-03-26First batch of adding SAL_OVERRRIDE to overriding function declarationsStephan Bergmann
2014-02-26cppuhelper: retrofit std::exception into overriding exception specsStephan Bergmann