diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-06-06 17:58:56 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-06-06 17:58:56 (GMT) |
commit | 3472b3019d048213d4c6f15e17d40602b8ca6e78 (patch) | |
tree | 0fcedd42e1b1582b67a364bfc3f2700878edad5d /src/util.cpp | |
parent | c6b7c8e7b6760ebfafa40a71eea48d1b46dec477 (diff) | |
download | Doxygen-3472b3019d048213d4c6f15e17d40602b8ca6e78.zip Doxygen-3472b3019d048213d4c6f15e17d40602b8ca6e78.tar.gz Doxygen-3472b3019d048213d4c6f15e17d40602b8ca6e78.tar.bz2 |
Fixed Oops in showFileDefMatches()
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 4 |
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(); } |