forked from qt-creator/qt-creator
Valgrind: Show status messages permanently.
There is no reason for these messages to fade away after a while. Change-Id: I6dcf199af87df77b6d65e267a45f5553c85bc952 Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
@@ -59,7 +59,7 @@ CallgrindRunControl::CallgrindRunControl(const AnalyzerStartParameters &sp,
|
||||
|
||||
void CallgrindRunControl::showStatusMessage(const QString &msg)
|
||||
{
|
||||
AnalyzerManager::showStatusMessage(CallgrindToolId, msg);
|
||||
AnalyzerManager::showPermanentStatusMessage(CallgrindToolId, msg);
|
||||
}
|
||||
|
||||
QStringList CallgrindRunControl::toolArguments() const
|
||||
|
||||
@@ -834,7 +834,7 @@ void CallgrindToolPrivate::engineFinished()
|
||||
if (data)
|
||||
showParserResults(data);
|
||||
else
|
||||
AnalyzerManager::showStatusMessage(CallgrindToolId, tr("Profiling aborted."));
|
||||
AnalyzerManager::showPermanentStatusMessage(CallgrindToolId, tr("Profiling aborted."));
|
||||
|
||||
setBusyCursor(false);
|
||||
}
|
||||
@@ -853,7 +853,7 @@ void CallgrindToolPrivate::showParserResults(const ParseData *data)
|
||||
} else {
|
||||
msg = tr("Parsing failed.");
|
||||
}
|
||||
AnalyzerManager::showStatusMessage(CallgrindToolId, msg);
|
||||
AnalyzerManager::showPermanentStatusMessage(CallgrindToolId, msg);
|
||||
}
|
||||
|
||||
void CallgrindToolPrivate::editorOpened(IEditor *editor)
|
||||
@@ -918,7 +918,7 @@ void CallgrindToolPrivate::loadExternalLogFile()
|
||||
return;
|
||||
}
|
||||
|
||||
AnalyzerManager::showStatusMessage(CallgrindToolId, tr("Parsing Profile Data..."));
|
||||
AnalyzerManager::showPermanentStatusMessage(CallgrindToolId, tr("Parsing Profile Data..."));
|
||||
QCoreApplication::processEvents();
|
||||
|
||||
Parser parser;
|
||||
|
||||
@@ -576,7 +576,7 @@ MemcheckRunControl *MemcheckTool::createMemcheckRunControl(const AnalyzerStartPa
|
||||
void MemcheckTool::engineFinished()
|
||||
{
|
||||
const int issuesFound = updateUiAfterFinishedHelper();
|
||||
AnalyzerManager::showStatusMessage(MemcheckToolId, issuesFound > 0
|
||||
AnalyzerManager::showPermanentStatusMessage(MemcheckToolId, issuesFound > 0
|
||||
? AnalyzerManager::tr("Memory Analyzer Tool finished, %n issues were found.", 0, issuesFound)
|
||||
: AnalyzerManager::tr("Memory Analyzer Tool finished, no issues were found."));
|
||||
}
|
||||
@@ -584,7 +584,7 @@ void MemcheckTool::engineFinished()
|
||||
void MemcheckTool::loadingExternalXmlLogFileFinished()
|
||||
{
|
||||
const int issuesFound = updateUiAfterFinishedHelper();
|
||||
AnalyzerManager::showStatusMessage(MemcheckToolId, issuesFound > 0
|
||||
AnalyzerManager::showPermanentStatusMessage(MemcheckToolId, issuesFound > 0
|
||||
? AnalyzerManager::tr("Log file processed, %n issues were found.", 0, issuesFound)
|
||||
: AnalyzerManager::tr("Log file processed, no issues were found."));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user