forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/4.1'
Change-Id: If3b6ebdb2aeb6fabadea1d06a1fe1c9211adcb8e
This commit is contained in:
@@ -85,7 +85,7 @@ ComboBoxStyle {
|
|||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
text: control.currentText
|
text: control.currentText
|
||||||
renderType: Text.NativeRendering
|
renderType: Text.NativeRendering
|
||||||
color: creatorTheme.PanelTextColorLight
|
color: control.textColor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -75,7 +75,7 @@ void GerritParameters::setPortFlagBySshType()
|
|||||||
const QString version = Utils::PathChooser::toolVersion(ssh, QStringList("-V"));
|
const QString version = Utils::PathChooser::toolVersion(ssh, QStringList("-V"));
|
||||||
isPlink = version.contains("plink", Qt::CaseInsensitive);
|
isPlink = version.contains("plink", Qt::CaseInsensitive);
|
||||||
}
|
}
|
||||||
portFlag = isPlink ? "-P" : defaultPortFlag;
|
portFlag = QLatin1String(isPlink ? "-P" : defaultPortFlag);
|
||||||
}
|
}
|
||||||
|
|
||||||
GerritParameters::GerritParameters()
|
GerritParameters::GerritParameters()
|
||||||
|
|||||||
Reference in New Issue
Block a user