Coverity Scan.
--HG-- branch : develop
This commit is contained in:
parent
0d0748fcee
commit
c4ddcdffe8
|
@ -1594,13 +1594,28 @@ void MainWindow::FullParseFile()
|
||||||
ui->actionPattern_properties->setEnabled(true);
|
ui->actionPattern_properties->setEnabled(true);
|
||||||
|
|
||||||
qint32 index = comboBoxDraws->findText(patternPiece);
|
qint32 index = comboBoxDraws->findText(patternPiece);
|
||||||
if ( index != -1 )
|
try
|
||||||
{ // -1 for not found
|
|
||||||
currentDrawChanged(index);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
currentDrawChanged(0);
|
if ( index != -1 )
|
||||||
|
{ // -1 for not found
|
||||||
|
currentDrawChanged(index);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
currentDrawChanged(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (VExceptionBadId &e)
|
||||||
|
{
|
||||||
|
e.CriticalMessageBox(tr("Bad id."), this);
|
||||||
|
Clear();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
catch (const VExceptionEmptyParameter &e)
|
||||||
|
{
|
||||||
|
e.CriticalMessageBox(tr("Error empty parameter."), this);
|
||||||
|
Clear();
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (comboBoxDraws->count() > 0)
|
if (comboBoxDraws->count() > 0)
|
||||||
|
|
|
@ -458,7 +458,7 @@ void VToolDetail::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
||||||
}
|
}
|
||||||
if (selectedAction == actionRemove)
|
if (selectedAction == actionRemove)
|
||||||
{
|
{
|
||||||
DeleteTool(this);
|
DeleteTool();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user