summaryrefslogtreecommitdiffstats
path: root/src/cite.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2014-08-03 17:17:44 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-08-18 09:32:19 (GMT)
commit1f77638174f715f0f2bcf5b2e32ebb329d531f85 (patch)
tree912cf1efe41d7e5e71cccc8839cb3953027071c5 /src/cite.cpp
parentca80d3cda3522a15c6d7149f79103c0aed660400 (diff)
downloadDoxygen-1f77638174f715f0f2bcf5b2e32ebb329d531f85.zip
Doxygen-1f77638174f715f0f2bcf5b2e32ebb329d531f85.tar.gz
Doxygen-1f77638174f715f0f2bcf5b2e32ebb329d531f85.tar.bz2
No warning in case cite definition is missing
In case the \cite command is used but no entry for it is given in a bib file no warning is given as the CiteInfo entry is present with the right label, but the text item is empty and this is not tested. (also corrected an error message on opening a file)
Diffstat (limited to 'src/cite.cpp')
-rw-r--r--src/cite.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cite.cpp b/src/cite.cpp
index 378e7ee..a33f12f 100644
--- a/src/cite.cpp
+++ b/src/cite.cpp
@@ -211,7 +211,7 @@ void CiteDict::generatePage() const
f.setName(citeListFile);
if (!f.open(IO_ReadOnly))
{
- err("could not open file %s/citelist.doc for reading\n",outputDir.data());
+ err("could not open file %s for reading\n",citeListFile.data());
}
bool insideBib=FALSE;