Commit 3472b301 authored by dimitri's avatar dimitri

Fixed Oops in showFileDefMatches()

parent c6b7c8e7
/****************************************************************************** /******************************************************************************
* *
* * $Id$
* *
* Copyright (C) 1997-2000 by Dimitri van Heesch. * Copyright (C) 1997-2000 by Dimitri van Heesch.
* *
...@@ -2117,7 +2117,7 @@ QCString showFileDefMatches(const FileNameDict *fnDict,const char *n) ...@@ -2117,7 +2117,7 @@ QCString showFileDefMatches(const FileNameDict *fnDict,const char *n)
{ {
if (path.isEmpty() || fd->getPath().right(path.length())==path) if (path.isEmpty() || fd->getPath().right(path.length())==path)
{ {
result+=" %s\n",fd->absFilePath().data(); result+=" "+fd->absFilePath()+"\n";
} }
fd=fn->next(); fd=fn->next();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment