forked from qt-creator/qt-creator
Fix coding style for else statements
Change-Id: I1309db70e98d678e150388c76ce665e988fdf081 Reviewed-by: Eike Ziller <eike.ziller@digia.com>
This commit is contained in:
committed by
Orgad Shaneh
parent
c67f7f6349
commit
ad9e7ccab6
@@ -1405,11 +1405,11 @@ bool DebuggerPluginPrivate::parseArgument(QStringList::const_iterator &it,
|
||||
QString key = arg.section(QLatin1Char('='), 0, 0);
|
||||
QString val = arg.section(QLatin1Char('='), 1, 1);
|
||||
if (val.isEmpty()) {
|
||||
if (key.isEmpty())
|
||||
if (key.isEmpty()) {
|
||||
continue;
|
||||
else if (sp.executable.isEmpty())
|
||||
} else if (sp.executable.isEmpty()) {
|
||||
sp.executable = key;
|
||||
else {
|
||||
} else {
|
||||
*errorMessage = DebuggerPlugin::tr("Only one executable allowed!");
|
||||
return false;
|
||||
}
|
||||
@@ -1419,15 +1419,13 @@ bool DebuggerPluginPrivate::parseArgument(QStringList::const_iterator &it,
|
||||
sp.remoteChannel = val;
|
||||
sp.displayName = tr("Remote: \"%1\"").arg(sp.remoteChannel);
|
||||
sp.startMessage = tr("Attaching to remote server %1.").arg(sp.remoteChannel);
|
||||
}
|
||||
else if (key == QLatin1String("core")) {
|
||||
} else if (key == QLatin1String("core")) {
|
||||
sp.startMode = AttachCore;
|
||||
sp.closeMode = DetachAtClose;
|
||||
sp.coreFile = val;
|
||||
sp.displayName = tr("Core file \"%1\"").arg(sp.coreFile);
|
||||
sp.startMessage = tr("Attaching to core file %1.").arg(sp.coreFile);
|
||||
}
|
||||
else if (key == QLatin1String("kit")) {
|
||||
} else if (key == QLatin1String("kit")) {
|
||||
kit = KitManager::instance()->find(Id::fromString(val));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user