debugger: don't show list of searched dumper locations if there was none

This commit is contained in:
hjk
2010-09-08 10:59:01 +02:00
parent 2b92b17fd7
commit d653099b8c

View File

@@ -708,7 +708,9 @@ bool GdbEngine::checkDebuggingHelpersClassic()
const QString msg = tr("The debugging helper library was not found at %1.")
.arg(loc);
showMessage(msg);
showQtDumperLibraryWarning(msg); // This might build the library.
// This can happen for remote debugging.
if (!locations.isEmpty())
showQtDumperLibraryWarning(msg); // This might build the library.
return QFileInfo(lib).exists();
}