mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2025-11-13 05:22:49 -05:00
fix: QString compilation
This commit is contained in:
@ -294,10 +294,11 @@ QString FindFileTool::formatResults(const QList<FileMatch> &matches,
|
||||
}
|
||||
|
||||
if (wasTruncated) {
|
||||
result += QString("\n(Note: %1 additional file%2 not shown. "
|
||||
result += QString(
|
||||
"\n(Note: %1 additional file%2 not shown. "
|
||||
"Use 'max_results' parameter to see more.)")
|
||||
.arg(totalFound - matches.size())
|
||||
.arg(totalFound - matches.size() == 1 ? "" : "s");
|
||||
.arg(totalFound - matches.size() == 1 ? QString("") : QString("s"));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user