author | zautrix <zautrix> | 2005-07-06 11:34:56 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-07-06 11:34:56 (UTC) |
commit | 1e5f0fbaac9814c7289137a74a460494553245c2 (patch) (unidiff) | |
tree | 670330f38ba364590c9404c135a8b6d9ac9bfb2e /kaddressbook/phoneeditwidget.cpp | |
parent | 62a3094163367227c98494d7f69724aba4927584 (diff) | |
download | kdepimpi-1e5f0fbaac9814c7289137a74a460494553245c2.zip kdepimpi-1e5f0fbaac9814c7289137a74a460494553245c2.tar.gz kdepimpi-1e5f0fbaac9814c7289137a74a460494553245c2.tar.bz2 |
fixx
Diffstat (limited to 'kaddressbook/phoneeditwidget.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | kaddressbook/phoneeditwidget.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/kaddressbook/phoneeditwidget.cpp b/kaddressbook/phoneeditwidget.cpp index a435959..2bce39a 100644 --- a/kaddressbook/phoneeditwidget.cpp +++ b/kaddressbook/phoneeditwidget.cpp | |||
@@ -383,33 +383,36 @@ PhoneEditDialog::PhoneEditDialog( const KABC::PhoneNumber::List &list, QWidget * | |||
383 | buttonBox->addButton( i18n( "&Add..." ), this, SLOT( slotAddPhoneNumber() ) ); | 383 | buttonBox->addButton( i18n( "&Add..." ), this, SLOT( slotAddPhoneNumber() ) ); |
384 | mEditButton = buttonBox->addButton( i18n( "&Edit..." ), this, SLOT( slotEditPhoneNumber() ) ); | 384 | mEditButton = buttonBox->addButton( i18n( "&Edit..." ), this, SLOT( slotEditPhoneNumber() ) ); |
385 | mEditButton->setEnabled( false ); | 385 | mEditButton->setEnabled( false ); |
386 | mRemoveButton = buttonBox->addButton( i18n( "&Remove" ), this, SLOT( slotRemovePhoneNumber() ) ); | 386 | mRemoveButton = buttonBox->addButton( i18n( "&Remove" ), this, SLOT( slotRemovePhoneNumber() ) ); |
387 | mRemoveButton->setEnabled( false ); | 387 | mRemoveButton->setEnabled( false ); |
388 | buttonBox->layout(); | 388 | buttonBox->layout(); |
389 | 389 | ||
390 | layout->addWidget( mListView, 0, 0 ); | 390 | layout->addWidget( mListView, 0, 0 ); |
391 | layout->addWidget( buttonBox, 0, 1 ); | 391 | layout->addWidget( buttonBox, 0, 1 ); |
392 | 392 | ||
393 | connect( mListView, SIGNAL(selectionChanged()), SLOT(slotSelectionChanged()) ); | 393 | connect( mListView, SIGNAL(selectionChanged()), SLOT(slotSelectionChanged()) ); |
394 | connect( mListView, SIGNAL(doubleClicked( QListViewItem *, const QPoint &, int )), this, SLOT( slotEditPhoneNumber())); | 394 | connect( mListView, SIGNAL(doubleClicked( QListViewItem *, const QPoint &, int )), this, SLOT( slotEditPhoneNumber())); |
395 | 395 | ||
396 | KABC::PhoneNumber::List::Iterator it; | 396 | KABC::PhoneNumber::List::Iterator it; |
397 | for ( it = mPhoneNumberList.begin(); it != mPhoneNumberList.end(); ++it ) | 397 | for ( it = mPhoneNumberList.begin(); it != mPhoneNumberList.end(); ++it ) |
398 | new PhoneViewItem( mListView, *it ); | 398 | new PhoneViewItem( mListView, *it ); |
399 | 399 | if (QApplication::desktop()->width() < 480 ) | |
400 | showMaximized(); | ||
401 | else | ||
402 | resize( 400, 400 ); | ||
400 | mChanged = false; | 403 | mChanged = false; |
401 | } | 404 | } |
402 | 405 | ||
403 | PhoneEditDialog::~PhoneEditDialog() | 406 | PhoneEditDialog::~PhoneEditDialog() |
404 | { | 407 | { |
405 | } | 408 | } |
406 | 409 | ||
407 | void PhoneEditDialog::slotAddPhoneNumber() | 410 | void PhoneEditDialog::slotAddPhoneNumber() |
408 | { | 411 | { |
409 | KABC::PhoneNumber tmp( "", 0 ); | 412 | KABC::PhoneNumber tmp( "", 0 ); |
410 | PhoneTypeDialog dlg( tmp, this ); | 413 | PhoneTypeDialog dlg( tmp, this ); |
411 | 414 | ||
412 | if ( dlg.exec() ) { | 415 | if ( dlg.exec() ) { |
413 | QListViewItem* i = mListView->firstChild(); | 416 | QListViewItem* i = mListView->firstChild(); |
414 | KABC::PhoneNumber phoneNumber = dlg.phoneNumber(); | 417 | KABC::PhoneNumber phoneNumber = dlg.phoneNumber(); |
415 | bool insert = true; | 418 | bool insert = true; |