summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--pwmanager/pwmanager/configwndimpl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/pwmanager/pwmanager/configwndimpl.cpp b/pwmanager/pwmanager/configwndimpl.cpp
index 595a6e7..5440498 100644
--- a/pwmanager/pwmanager/configwndimpl.cpp
+++ b/pwmanager/pwmanager/configwndimpl.cpp
@@ -63,13 +63,13 @@ void ConfigWndImpl::browseAutoStButton_slot()
63#ifndef PWM_EMBEDDED 63#ifndef PWM_EMBEDDED
64 QString path(KFileDialog::getOpenFileName(QString::null, 64 QString path(KFileDialog::getOpenFileName(QString::null,
65 i18n("*.pwm|PwM Password file\n" 65 i18n("*.pwm|PwM Password file\n"
66 "*|All files"), this)); 66 "*|All files"), this));
67#else 67#else
68 QString path = locateLocal( "data", KGlobal::getAppName() + "/*.pwm"); 68 QString path = locateLocal( "data", KGlobal::getAppName() + "/*.pwm");
69 path = KFileDialog::getOpenFileName(filename, 69 path = KFileDialog::getOpenFileName(path,
70 i18n("password filename(*.pwm)"), this); 70 i18n("password filename(*.pwm)"), this);
71#endif 71#endif
72 if (path != QString::null) 72 if (path != QString::null)
73 autoStartLineEdit->setText(path); 73 autoStartLineEdit->setText(path);
74} 74}
75 75