Diffstat (limited to 'libkabcwrap/select_addressee_base.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | libkabcwrap/select_addressee_base.cpp | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/libkabcwrap/select_addressee_base.cpp b/libkabcwrap/select_addressee_base.cpp deleted file mode 100644 index 1b846e2..0000000 --- a/libkabcwrap/select_addressee_base.cpp +++ b/dev/null @@ -1,50 +0,0 @@ -/**************************************************************************** -** Form implementation generated from reading ui file 'select_addressee_base.ui' -** -** Created: Fri Feb 6 04:58:15 2004 -** by: The User Interface Compiler (uic) -** -** WARNING! All changes made in this file will be lost! -****************************************************************************/ -#include "select_addressee_base.h" - -#include <qheader.h> -#include <qlistview.h> -#include <qpushbutton.h> -#include <qlayout.h> -#include <qvariant.h> -#include <qtooltip.h> -#include <qwhatsthis.h> - -/* - * Constructs a SelectAddressee which is a child of 'parent', with the - * name 'name' and widget flags set to 'f' - * - * The dialog will by default be modeless, unless you set 'modal' to - * TRUE to construct a modal dialog. - */ -SelectAddressee::SelectAddressee( QWidget* parent, const char* name, bool modal, WFlags fl ) - : QDialog( parent, name, modal, fl ) -{ - if ( !name ) - setName( "SelectAddressee" ); - resize( 208, 267 ); - setCaption( tr( "Select adressee" ) ); - SelectAddresseeLayout = new QVBoxLayout( this ); - SelectAddresseeLayout->setSpacing( 6 ); - SelectAddresseeLayout->setMargin( 11 ); - - contactList = new QListView( this, "contactList" ); - contactList->addColumn( tr( "Name" ) ); - contactList->addColumn( tr( "Email" ) ); - SelectAddresseeLayout->addWidget( contactList ); -} - -/* - * Destroys the object and frees any allocated resources - */ -SelectAddressee::~SelectAddressee() -{ - // no need to delete child widgets, Qt does it all for us -} - |