We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36735cd commit f1cb5deCopy full SHA for f1cb5de
src/util.cpp
@@ -3278,11 +3278,14 @@ QCString findFilePath(const QCString &file,bool &ambig)
3278
ambig=false;
3279
QCString result;
3280
bool found=false;
3281
- FileInfo fi(file.str());
3282
- if (fi.exists())
+ if (!found)
3283
{
3284
- result=fi.absFilePath();
3285
- found=true;
+ FileInfo fi(file.str());
+ if (fi.exists())
+ {
3286
+ result=fi.absFilePath();
3287
+ found=true;
3288
+ }
3289
}
3290
if (!found)
3291
0 commit comments