summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-06-14 20:17:08 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-06-15 08:47:58 (GMT)
commite590d56be170c6c6700b7838b601b29399aebc98 (patch)
tree196b5990f272a80282a90210bedf3e5456100709
parentbd76ec600742936e6373ccbcdfc19966b44cb3ec (diff)
downloadDoxygen-e590d56be170c6c6700b7838b601b29399aebc98.zip
Doxygen-e590d56be170c6c6700b7838b601b29399aebc98.tar.gz
Doxygen-e590d56be170c6c6700b7838b601b29399aebc98.tar.bz2
Fixed type in function name
-rw-r--r--Makefile.in2
-rw-r--r--qtools/qfileinfo_win32.cpp2
-rw-r--r--src/vhdlscanner.l2
3 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 606804f..99a616a 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -82,7 +82,7 @@ pdf: docs
DISTFILES = Doxyfile libmd5 addon tmake doc examples bin lib objects \
qtools src configure configure.bin Makefile.in Makefile.win_nmake.in \
Makefile.win_make.in INSTALL LANGUAGE.HOWTO LICENSE PLATFORMS \
- VERSION packages winbuild jquery
+ VERSION README.md packages winbuild jquery
archive: clean
tar zcvf dx`date +%y%m%d`.tgz $(DISTFILES)
diff --git a/qtools/qfileinfo_win32.cpp b/qtools/qfileinfo_win32.cpp
index 680ffb1..2e1ecae 100644
--- a/qtools/qfileinfo_win32.cpp
+++ b/qtools/qfileinfo_win32.cpp
@@ -266,7 +266,7 @@ void QFileInfo::doStat() const
}
#else
QString file = fn;
- reslashify(QDir::cleanupDirPath(file));
+ reslashify(QDir::cleanDirPath(file));
#ifdef QT_LARGEFILE_SUPPORT
if ( _wstati64( (wchar_t*) file.ucs2(), b ) == -1 ) {
#else
diff --git a/src/vhdlscanner.l b/src/vhdlscanner.l
index d114218..fb0dcb7 100644
--- a/src/vhdlscanner.l
+++ b/src/vhdlscanner.l
@@ -796,7 +796,7 @@ void VHDLLanguageScanner::parseInput(const char *fileName,
void VHDLLanguageScanner::parseCode(CodeOutputInterface &codeOutIntf,
const char *scopeName,
const QCString &input,
- SrcLangExt lang,
+ SrcLangExt /*lang*/,
bool isExampleBlock,
const char *exampleName,
FileDef *fileDef,