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
@@ -37,65 +37,65 @@
37#endif 37#endif
38 38
39ConfigWndImpl::ConfigWndImpl() 39ConfigWndImpl::ConfigWndImpl()
40#ifdef PWM_EMBEDDED 40#ifdef PWM_EMBEDDED
41 : configWnd(0, "ConfigWndImpl", TRUE) 41 : configWnd(0, "ConfigWndImpl", TRUE)
42#endif 42#endif
43 43
44{ 44{
45} 45}
46 46
47ConfigWndImpl::~ConfigWndImpl() 47ConfigWndImpl::~ConfigWndImpl()
48{ 48{
49} 49}
50 50
51void ConfigWndImpl::okButton_slot() 51void ConfigWndImpl::okButton_slot()
52{ 52{
53 done(0); 53 done(0);
54} 54}
55 55
56void ConfigWndImpl::cancelButton_slot() 56void ConfigWndImpl::cancelButton_slot()
57{ 57{
58 done(1); 58 done(1);
59} 59}
60 60
61void ConfigWndImpl::browseAutoStButton_slot() 61void ConfigWndImpl::browseAutoStButton_slot()
62{ 62{
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
76void ConfigWndImpl::selEntrFontButton_slot() 76void ConfigWndImpl::selEntrFontButton_slot()
77{ 77{
78 bool ok; 78 bool ok;
79#ifndef PWM_EMBEDDED 79#ifndef PWM_EMBEDDED
80 QFont fnt = QFontDialog::getFont(&ok, currentEntryFont, this); 80 QFont fnt = QFontDialog::getFont(&ok, currentEntryFont, this);
81#else 81#else
82 QFont fnt = KFontDialog::getFont(currentEntryFont, ok); 82 QFont fnt = KFontDialog::getFont(currentEntryFont, ok);
83#endif 83#endif
84 if (!ok) 84 if (!ok)
85 return; 85 return;
86 currEntrFont->setFont(fnt); 86 currEntrFont->setFont(fnt);
87 currEntrFont->setText(fnt.family()); 87 currEntrFont->setText(fnt.family());
88 currentEntryFont = fnt; 88 currentEntryFont = fnt;
89} 89}
90 90
91int ConfigWndImpl::getFilePermissions() 91int ConfigWndImpl::getFilePermissions()
92{ 92{
93 char octalDigits[] = "01234567"; 93 char octalDigits[] = "01234567";
94 bool isOctal; 94 bool isOctal;
95 QString permString(permissionLineEdit->text()); 95 QString permString(permissionLineEdit->text());
96 int i, j, length = permString.length(); 96 int i, j, length = permString.length();
97 if (length != 3) { 97 if (length != 3) {
98 printWarn("Wrong permission string length! Please enter " 98 printWarn("Wrong permission string length! Please enter "
99 "the string like the following example: 600"); 99 "the string like the following example: 600");
100 return CONF_DEFAULT_FILEPERMISSIONS; 100 return CONF_DEFAULT_FILEPERMISSIONS;
101 } 101 }