summaryrefslogtreecommitdiffabout
path: root/kaddressbook/extensionwidget.cpp
Unidiff
Diffstat (limited to 'kaddressbook/extensionwidget.cpp') (more/less context) (show whitespace changes)
-rw-r--r--kaddressbook/extensionwidget.cpp5
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
@@ -33,52 +33,51 @@ ExtensionWidget::ExtensionWidget( KABCore *core, QWidget *parent,
33} 33}
34 34
35ExtensionWidget::~ExtensionWidget() 35ExtensionWidget::~ExtensionWidget()
36{ 36{
37} 37}
38 38
39KABCore *ExtensionWidget::core() const 39KABCore *ExtensionWidget::core() const
40{ 40{
41 return mCore; 41 return mCore;
42} 42}
43 43
44bool ExtensionWidget::contactsSelected() const 44bool ExtensionWidget::contactsSelected() const
45{ 45{
46 return mCore->selectedUIDs().count() != 0; 46 return mCore->selectedUIDs().count() != 0;
47} 47}
48 48
49KABC::Addressee::List ExtensionWidget::selectedContacts() 49KABC::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
61void ExtensionWidget::contactsSelectionChanged() 61void ExtensionWidget::contactsSelectionChanged()
62{ 62{
63 // do nothing 63 // do nothing
64} 64}
65 65
66QString ExtensionWidget::title() const 66QString ExtensionWidget::title() const
67{ 67{
68 return "<bug!!!>"; 68 return "<bug!!!>";
69} 69}
70 70
71QString ExtensionWidget::identifier() const 71QString ExtensionWidget::identifier() const
72{ 72{
73 return "<bug!!!>"; 73 return "<bug!!!>";
74} 74}
75 75
76ConfigureWidget *ExtensionFactory::configureWidget( QWidget*, const char* ) 76ConfigureWidget *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