author | zecke <zecke> | 2002-11-03 11:08:36 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-11-03 11:08:36 (UTC) |
commit | 231992e3a25b1bf3667ee20b6d43dd8eda95bc74 (patch) (unidiff) | |
tree | ee598e790feccbf048366c8ef9114948386347f1 | |
parent | 2ddf0a555fc848930de8b0f7b237bbd7f2a028ca (diff) | |
download | opie-231992e3a25b1bf3667ee20b6d43dd8eda95bc74.zip opie-231992e3a25b1bf3667ee20b6d43dd8eda95bc74.tar.gz opie-231992e3a25b1bf3667ee20b6d43dd8eda95bc74.tar.bz2 |
no default arguments
Patch from jowenn
-rw-r--r-- | core/pim/addressbook/configdlg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/pim/addressbook/configdlg.cpp b/core/pim/addressbook/configdlg.cpp index c0195d1..d1c2ef8 100644 --- a/core/pim/addressbook/configdlg.cpp +++ b/core/pim/addressbook/configdlg.cpp | |||
@@ -1,61 +1,61 @@ | |||
1 | #include "configdlg.h" | 1 | #include "configdlg.h" |
2 | #include <qcheckbox.h> | 2 | #include <qcheckbox.h> |
3 | #include <qradiobutton.h> | 3 | #include <qradiobutton.h> |
4 | 4 | ||
5 | ConfigDlg::ConfigDlg( QWidget *parent = 0, const char *name = 0 ): | 5 | ConfigDlg::ConfigDlg( QWidget *parent, const char *name): |
6 | ConfigDlg_Base(parent, name, true ) | 6 | ConfigDlg_Base(parent, name, true ) |
7 | {} | 7 | {} |
8 | 8 | ||
9 | 9 | ||
10 | bool ConfigDlg::useRegExp() const | 10 | bool ConfigDlg::useRegExp() const |
11 | { | 11 | { |
12 | return m_useRegExp->isOn(); | 12 | return m_useRegExp->isOn(); |
13 | } | 13 | } |
14 | bool ConfigDlg::useWildCards() const | 14 | bool ConfigDlg::useWildCards() const |
15 | { | 15 | { |
16 | return m_useWildCard->isOn(); | 16 | return m_useWildCard->isOn(); |
17 | } | 17 | } |
18 | bool ConfigDlg::useQtMail() const | 18 | bool ConfigDlg::useQtMail() const |
19 | { | 19 | { |
20 | return m_useQtMail->isOn(); | 20 | return m_useQtMail->isOn(); |
21 | } | 21 | } |
22 | bool ConfigDlg::useOpieMail() const | 22 | bool ConfigDlg::useOpieMail() const |
23 | { | 23 | { |
24 | return m_useOpieMail->isOn(); | 24 | return m_useOpieMail->isOn(); |
25 | } | 25 | } |
26 | bool ConfigDlg::beCaseSensitive() const | 26 | bool ConfigDlg::beCaseSensitive() const |
27 | { | 27 | { |
28 | return m_useCaseSensitive->isChecked(); | 28 | return m_useCaseSensitive->isChecked(); |
29 | } | 29 | } |
30 | bool ConfigDlg::signalWrapAround() const | 30 | bool ConfigDlg::signalWrapAround() const |
31 | { | 31 | { |
32 | return m_signalWrapAround->isChecked(); | 32 | return m_signalWrapAround->isChecked(); |
33 | } | 33 | } |
34 | void ConfigDlg::setUseRegExp( bool v ) | 34 | void ConfigDlg::setUseRegExp( bool v ) |
35 | { | 35 | { |
36 | m_useRegExp->setChecked( v ); | 36 | m_useRegExp->setChecked( v ); |
37 | } | 37 | } |
38 | void ConfigDlg::setUseWildCards( bool v ) | 38 | void ConfigDlg::setUseWildCards( bool v ) |
39 | { | 39 | { |
40 | m_useWildCard->setChecked( v ); | 40 | m_useWildCard->setChecked( v ); |
41 | } | 41 | } |
42 | void ConfigDlg::setBeCaseSensitive( bool v ) | 42 | void ConfigDlg::setBeCaseSensitive( bool v ) |
43 | { | 43 | { |
44 | m_useCaseSensitive->setChecked( v ); | 44 | m_useCaseSensitive->setChecked( v ); |
45 | } | 45 | } |
46 | void ConfigDlg::setSignalWrapAround( bool v ) | 46 | void ConfigDlg::setSignalWrapAround( bool v ) |
47 | { | 47 | { |
48 | m_signalWrapAround->setChecked( v ); | 48 | m_signalWrapAround->setChecked( v ); |
49 | } | 49 | } |
50 | void ConfigDlg::setQtMail( bool v ) | 50 | void ConfigDlg::setQtMail( bool v ) |
51 | { | 51 | { |
52 | m_useQtMail->setChecked( v ); | 52 | m_useQtMail->setChecked( v ); |
53 | } | 53 | } |
54 | void ConfigDlg::setOpieMail( bool v ) | 54 | void ConfigDlg::setOpieMail( bool v ) |
55 | { | 55 | { |
56 | m_useOpieMail->setChecked( v ); | 56 | m_useOpieMail->setChecked( v ); |
57 | } | 57 | } |
58 | 58 | ||
59 | 59 | ||
60 | 60 | ||
61 | 61 | ||