summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2012-10-28 10:18:21 (GMT)
committerKevin Smith <git@kismith.co.uk>2012-10-28 10:18:21 (GMT)
commitcf313abffed7fcadf01d13f849852290dbdcfbe6 (patch)
tree4c2bd9af140f7c724195acf99dbbe53b463f96e1
parente757af7278a08f2494ee21457bcd5353c2dec1a6 (diff)
downloadswift-cf313abffed7fcadf01d13f849852290dbdcfbe6.zip
swift-cf313abffed7fcadf01d13f849852290dbdcfbe6.tar.bz2
Missed a translatable string
Change-Id: I3f3c9e11472d1672a538e70bd160b6332ff6390b
-rw-r--r--Swift/QtUI/QtLoginWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/QtUI/QtLoginWindow.cpp b/Swift/QtUI/QtLoginWindow.cpp
index cc9f50a..1cb1c68 100644
--- a/Swift/QtUI/QtLoginWindow.cpp
+++ b/Swift/QtUI/QtLoginWindow.cpp
@@ -409,7 +409,7 @@ void QtLoginWindow::handleCertficateChecked(bool checked) {
certificateButton_->setChecked(false);
}
#else
- certificateFile_ = QFileDialog::getOpenFileName(this, tr("Select an authentication certificate"), QString(), QString("P12 files (*.cert *.p12 *.pfx);;All files (*.*)"));
+ certificateFile_ = QFileDialog::getOpenFileName(this, tr("Select an authentication certificate"), QString(), tr("P12 files (*.cert *.p12 *.pfx);;All files (*.*)"));
if (certificateFile_.isEmpty()) {
certificateButton_->setChecked(false);
}