summaryrefslogtreecommitdiffabout
authorulf69 <ulf69>2004-06-29 05:23:32 (UTC)
committer ulf69 <ulf69>2004-06-29 05:23:32 (UTC)
commitfbc79b15b58ca195fa63c741a89d6d098cc05a66 (patch) (unidiff)
treee17713fc73877f2ff133af8910d40e0ae0590df5
parent822dcc26ab3b70952679a1e12a010549659b6351 (diff)
downloadkdepimpi-fbc79b15b58ca195fa63c741a89d6d098cc05a66.zip
kdepimpi-fbc79b15b58ca195fa63c741a89d6d098cc05a66.tar.gz
kdepimpi-fbc79b15b58ca195fa63c741a89d6d098cc05a66.tar.bz2
removed inclusion of moc file
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--kabc/distributionlistdialog.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/kabc/distributionlistdialog.cpp b/kabc/distributionlistdialog.cpp
index 31d5944..d2e1144 100644
--- a/kabc/distributionlistdialog.cpp
+++ b/kabc/distributionlistdialog.cpp
@@ -16,51 +16,49 @@
16 along with this library; see the file COPYING.LIB. If not, write to 16 along with this library; see the file COPYING.LIB. If not, write to
17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02111-1307, USA.
19*/ 19*/
20 20
21#include <qlistview.h> 21#include <qlistview.h>
22#include <qlayout.h> 22#include <qlayout.h>
23#include <qlabel.h> 23#include <qlabel.h>
24#include <qpushbutton.h> 24#include <qpushbutton.h>
25#include <qcombobox.h> 25#include <qcombobox.h>
26#include <klineeditdlg.h> 26#include <klineeditdlg.h>
27#include <qbuttongroup.h> 27#include <qbuttongroup.h>
28#include <qradiobutton.h> 28#include <qradiobutton.h>
29 29
30#include <klocale.h> 30#include <klocale.h>
31#include <kdebug.h> 31#include <kdebug.h>
32#include <kmessagebox.h> 32#include <kmessagebox.h>
33 33
34#include "addressbook.h" 34#include "addressbook.h"
35#include "addresseedialog.h" 35#include "addresseedialog.h"
36#include "distributionlist.h" 36#include "distributionlist.h"
37 37
38#include "distributionlistdialog.h" 38#include "distributionlistdialog.h"
39 39
40#ifndef KAB_EMBEDDED 40//US #include "distributionlistdialog.moc"
41#include "distributionlistdialog.moc"
42#endif //KAB_EMBEDDED
43 41
44using namespace KABC; 42using namespace KABC;
45 43
46DistributionListDialog::DistributionListDialog( AddressBook *addressBook, QWidget *parent) 44DistributionListDialog::DistributionListDialog( AddressBook *addressBook, QWidget *parent)
47 : KDialogBase( parent, "", true, i18n("Configure Distribution Lists"), Ok, Ok, true) 45 : KDialogBase( parent, "", true, i18n("Configure Distribution Lists"), Ok, Ok, true)
48{ 46{
49 mEditor = new DistributionListEditorWidget( addressBook, this ); 47 mEditor = new DistributionListEditorWidget( addressBook, this );
50 setMainWidget( mEditor ); 48 setMainWidget( mEditor );
51 49
52 connect( this, SIGNAL( okClicked() ), mEditor, SLOT( save() ) ); 50 connect( this, SIGNAL( okClicked() ), mEditor, SLOT( save() ) );
53} 51}
54 52
55DistributionListDialog::~DistributionListDialog() 53DistributionListDialog::~DistributionListDialog()
56{ 54{
57} 55}
58 56
59 57
60EmailSelector::EmailSelector( const QStringList &emails, const QString &current, 58EmailSelector::EmailSelector( const QStringList &emails, const QString &current,
61 QWidget *parent ) : 59 QWidget *parent ) :
62 KDialogBase( KDialogBase::Plain, i18n("Select Email Address"), Ok, Ok, 60 KDialogBase( KDialogBase::Plain, i18n("Select Email Address"), Ok, Ok,
63 parent ) 61 parent )
64{ 62{
65 QFrame *topFrame = plainPage(); 63 QFrame *topFrame = plainPage();
66 QBoxLayout *topLayout = new QVBoxLayout( topFrame ); 64 QBoxLayout *topLayout = new QVBoxLayout( topFrame );