diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2000-06-06 17:58:56 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2000-06-06 17:58:56 (GMT) |
commit | 4bdaaa8da9bee65b5cda2e60a55f95d948feba88 (patch) | |
tree | 0fcedd42e1b1582b67a364bfc3f2700878edad5d | |
parent | d8197176c24ca1a41af722063bfb6ceeb050442c (diff) | |
download | Doxygen-4bdaaa8da9bee65b5cda2e60a55f95d948feba88.zip Doxygen-4bdaaa8da9bee65b5cda2e60a55f95d948feba88.tar.gz Doxygen-4bdaaa8da9bee65b5cda2e60a55f95d948feba88.tar.bz2 |
Fixed Oops in showFileDefMatches()
-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(); } |