summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-06-06 17:58:56 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-06-06 17:58:56 (GMT)
commit4bdaaa8da9bee65b5cda2e60a55f95d948feba88 (patch)
tree0fcedd42e1b1582b67a364bfc3f2700878edad5d
parentd8197176c24ca1a41af722063bfb6ceeb050442c (diff)
downloadDoxygen-4bdaaa8da9bee65b5cda2e60a55f95d948feba88.zip
Doxygen-4bdaaa8da9bee65b5cda2e60a55f95d948feba88.tar.gz
Doxygen-4bdaaa8da9bee65b5cda2e60a55f95d948feba88.tar.bz2
Fixed Oops in showFileDefMatches()
-rw-r--r--src/util.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.cpp b/src/util.cpp
index c0246fa..29a2147 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -1,6 +1,6 @@
/******************************************************************************
*
- *
+ * $Id$
*
* Copyright (C) 1997-2000 by Dimitri van Heesch.
*
@@ -2117,7 +2117,7 @@ QCString showFileDefMatches(const FileNameDict *fnDict,const char *n)
{
if (path.isEmpty() || fd->getPath().right(path.length())==path)
{
- result+=" %s\n",fd->absFilePath().data();
+ result+=" "+fd->absFilePath()+"\n";
}
fd=fn->next();
}