Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
cfc07cea
Commit
cfc07cea
authored
Apr 13, 2010
by
ck
Browse files
Maemo: Add filter to key file dialog.
Task-number: QTCREATORBUG-1067
parent
d469a623
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qt-maemo/maemosettingswidget.cpp
View file @
cfc07cea
...
...
@@ -356,8 +356,9 @@ void MaemoSettingsWidget::deployKey()
return
;
const
QString
&
dir
=
QFileInfo
(
currentConfig
().
keyFile
).
path
();
const
QString
&
keyFile
=
QFileDialog
::
getOpenFileName
(
this
,
tr
(
"Choose public key file"
),
dir
);
const
QString
&
keyFile
=
QFileDialog
::
getOpenFileName
(
this
,
tr
(
"Choose public key file"
),
dir
,
tr
(
"Public Key Files(*.pub);;All Files (*)"
));
if
(
keyFile
.
isEmpty
())
return
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment