Merge remote-tracking branch 'origin/4.1'

Change-Id: If3b6ebdb2aeb6fabadea1d06a1fe1c9211adcb8e
This commit is contained in:
Orgad Shaneh
2016-07-25 07:27:15 +03:00
2 changed files with 2 additions and 2 deletions

View File

@@ -85,7 +85,7 @@ ComboBoxStyle {
anchors.verticalCenter: parent.verticalCenter
text: control.currentText
renderType: Text.NativeRendering
color: creatorTheme.PanelTextColorLight
color: control.textColor
}
}

View File

@@ -75,7 +75,7 @@ void GerritParameters::setPortFlagBySshType()
const QString version = Utils::PathChooser::toolVersion(ssh, QStringList("-V"));
isPlink = version.contains("plink", Qt::CaseInsensitive);
}
portFlag = isPlink ? "-P" : defaultPortFlag;
portFlag = QLatin1String(isPlink ? "-P" : defaultPortFlag);
}
GerritParameters::GerritParameters()