Fix assert when Mail-Followup-To contains two emails, as Ossi's Mutt does
[kdepim.git] / kaddressbook / contactselectiondialog.cpp
blob2846fb4078cecafac1debc457d75f56bd0f176b4
1 /*
2 Copyright (c) 2009 Tobias Koenig <tokoe@kde.org>
4 This library is free software; you can redistribute it and/or modify it
5 under the terms of the GNU Library General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or (at your
7 option) any later version.
9 This library is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
12 License for more details.
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to the
16 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 02110-1301, USA.
20 #include "contactselectiondialog.h"
22 #include "contactselectionwidget.h"
24 #include <klocale.h>
26 ContactSelectionDialog::ContactSelectionDialog( QItemSelectionModel *selectionModel, QWidget *parent )
27 : KDialog( parent )
29 setCaption( i18n( "Select Contacts" ) );
30 setButtons( Ok | Cancel );
32 mSelectionWidget = new ContactSelectionWidget( selectionModel, this );
33 setMainWidget( mSelectionWidget );
35 setInitialSize( QSize( 450, 220 ) );
38 void ContactSelectionDialog::setMessageText( const QString &message )
40 mSelectionWidget->setMessageText( message );
43 void ContactSelectionDialog::setDefaultAddressBook( const Akonadi::Collection &addressBook )
45 mSelectionWidget->setDefaultAddressBook( addressBook );
48 KABC::Addressee::List ContactSelectionDialog::selectedContacts() const
50 return mSelectionWidget->selectedContacts();
53 #include "contactselectiondialog.moc"