astyle formatting
This commit is contained in:
parent
ea574b0a38
commit
b660cf89ef
|
@ -207,9 +207,7 @@ void MainWindow::HandleCLIParams(const QStringList ¶ms)
|
|||
checkedDir = params[ind + 1];
|
||||
|
||||
LoadResults(logFile, checkedDir);
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
LoadResults(logFile);
|
||||
}
|
||||
} else
|
||||
|
|
|
@ -404,7 +404,7 @@ private:
|
|||
* @param params List of string given to command line.
|
||||
*/
|
||||
void HandleCLIParams(const QStringList ¶ms);
|
||||
|
||||
|
||||
/**
|
||||
* @brief Load XML file to the GUI.
|
||||
* @param file Filename (inc. path) of XML file to load.
|
||||
|
|
|
@ -535,7 +535,7 @@ void ResultsTree::contextMenuEvent(QContextMenuEvent * e)
|
|||
QAction *copymessageid = new QAction(tr("Copy message id"), &menu);
|
||||
QAction *hide = new QAction(tr("Hide"), &menu);
|
||||
QAction *hideallid = new QAction(tr("Hide all with id"), &menu);
|
||||
|
||||
|
||||
if (multipleSelection) {
|
||||
copyfilename->setDisabled(true);
|
||||
copypath->setDisabled(true);
|
||||
|
@ -784,7 +784,7 @@ void ResultsTree::HideAllIdResult()
|
|||
if (!file) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
//Get the amount of errors this file contains
|
||||
int errorcount = file->rowCount();
|
||||
|
||||
|
@ -792,9 +792,9 @@ void ResultsTree::HideAllIdResult()
|
|||
//Get the error itself
|
||||
QStandardItem *child = file->child(j, 0);
|
||||
if (!child) {
|
||||
continue;
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
QVariantMap userdata = child->data().toMap();
|
||||
if (userdata["id"].toString() == messageId) {
|
||||
userdata["hide"] = true;
|
||||
|
|
|
@ -278,12 +278,11 @@ private:
|
|||
CheckUninitVar *checkUninitVar = dynamic_cast<CheckUninitVar *>(c->owner);
|
||||
if (checkUninitVar) {
|
||||
if (c->strncpy_ || c->memset_nonzero) {
|
||||
if(!Token::Match(c->var->typeStartToken(), "char|wchar_t")) {
|
||||
if (!Token::Match(c->var->typeStartToken(), "char|wchar_t")) {
|
||||
continue;
|
||||
}
|
||||
checkUninitVar->uninitstringError(tok, c->var->name(), c->strncpy_);
|
||||
}
|
||||
else if (c->var->isPointer() && !c->var->isArray() && c->alloc)
|
||||
} else if (c->var->isPointer() && !c->var->isArray() && c->alloc)
|
||||
checkUninitVar->uninitdataError(tok, c->var->name());
|
||||
else
|
||||
checkUninitVar->uninitvarError(tok, c->var->name());
|
||||
|
|
Loading…
Reference in New Issue