Diffstat (limited to 'kaddressbook/extensionwidget.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | kaddressbook/extensionwidget.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/kaddressbook/extensionwidget.cpp b/kaddressbook/extensionwidget.cpp index 69f4aa8..7c3b415 100644 --- a/kaddressbook/extensionwidget.cpp +++ b/kaddressbook/extensionwidget.cpp | |||
@@ -17,68 +17,67 @@ | |||
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | 18 | ||
19 | As a special exception, permission is given to link this program | 19 | As a special exception, permission is given to link this program |
20 | with any edition of Qt, and distribute the resulting executable, | 20 | with any edition of Qt, and distribute the resulting executable, |
21 | without including the source code for Qt in the source distribution. | 21 | without including the source code for Qt in the source distribution. |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include "configurewidget.h" | 24 | #include "configurewidget.h" |
25 | #include "kabcore.h" | 25 | #include "kabcore.h" |
26 | 26 | ||
27 | #include "extensionwidget.h" | 27 | #include "extensionwidget.h" |
28 | 28 | ||
29 | ExtensionWidget::ExtensionWidget( KABCore *core, QWidget *parent, | 29 | ExtensionWidget::ExtensionWidget( KABCore *core, QWidget *parent, |
30 | const char *name ) | 30 | const char *name ) |
31 | : QWidget( parent, name ), mCore( core ) | 31 | : QWidget( parent, name ), mCore( core ) |
32 | { | 32 | { |
33 | } | 33 | } |
34 | 34 | ||
35 | ExtensionWidget::~ExtensionWidget() | 35 | ExtensionWidget::~ExtensionWidget() |
36 | { | 36 | { |
37 | } | 37 | } |
38 | 38 | ||
39 | KABCore *ExtensionWidget::core() const | 39 | KABCore *ExtensionWidget::core() const |
40 | { | 40 | { |
41 | return mCore; | 41 | return mCore; |
42 | } | 42 | } |
43 | 43 | ||
44 | bool ExtensionWidget::contactsSelected() const | 44 | bool ExtensionWidget::contactsSelected() const |
45 | { | 45 | { |
46 | return mCore->selectedUIDs().count() != 0; | 46 | return mCore->selectedUIDs().count() != 0; |
47 | } | 47 | } |
48 | 48 | ||
49 | KABC::Addressee::List ExtensionWidget::selectedContacts() | 49 | KABC::Addressee::List ExtensionWidget::selectedContacts() |
50 | { | 50 | { |
51 | KABC::Addressee::List list; | 51 | KABC::Addressee::List list; |
52 | 52 | ||
53 | QStringList uids = mCore->selectedUIDs(); | 53 | QStringList uids = mCore->selectedUIDs(); |
54 | QStringList::Iterator it; | 54 | QStringList::Iterator it; |
55 | for ( it = uids.begin(); it != uids.end(); ++it ) | 55 | for ( it = uids.begin(); it != uids.end(); ++it ) |
56 | list.append( mCore->addressBook()->findByUid( *it ) ); | 56 | list.append( mCore->addressBook()->findByUid( *it ) ); |
57 | 57 | ||
58 | return list; | 58 | return list; |
59 | } | 59 | } |
60 | 60 | ||
61 | void ExtensionWidget::contactsSelectionChanged() | 61 | void ExtensionWidget::contactsSelectionChanged() |
62 | { | 62 | { |
63 | // do nothing | 63 | // do nothing |
64 | } | 64 | } |
65 | 65 | ||
66 | QString ExtensionWidget::title() const | 66 | QString ExtensionWidget::title() const |
67 | { | 67 | { |
68 | return "<bug!!!>"; | 68 | return "<bug!!!>"; |
69 | } | 69 | } |
70 | 70 | ||
71 | QString ExtensionWidget::identifier() const | 71 | QString ExtensionWidget::identifier() const |
72 | { | 72 | { |
73 | return "<bug!!!>"; | 73 | return "<bug!!!>"; |
74 | } | 74 | } |
75 | 75 | ||
76 | ConfigureWidget *ExtensionFactory::configureWidget( QWidget*, const char* ) | 76 | ConfigureWidget *ExtensionFactory::configureWidget( QWidget*, const char* ) |
77 | { | 77 | { |
78 | return 0; | 78 | return 0; |
79 | } | 79 | } |
80 | 80 | ||
81 | #ifndef KAB_EMBEDDED | 81 | #ifndef KAB_EMBEDDED_ |
82 | #include "extensionwidget.moc" | 82 | #include "moc_extensionwidget.cpp" |
83 | #endif //KAB_EMBEDDED | 83 | #endif //KAB_EMBEDDED |
84 | |||