author | cniehaus <cniehaus> | 2002-12-13 16:19:10 (UTC) |
---|---|---|
committer | cniehaus <cniehaus> | 2002-12-13 16:19:10 (UTC) |
commit | c8383e3b2e83631f68ee93173422e83746be695f (patch) (unidiff) | |
tree | 0550567844d620155d11dd31c1c0db50ba2a9b5e | |
parent | 33513c771164337da46c65f379c98b06adb6f704 (diff) | |
download | opie-c8383e3b2e83631f68ee93173422e83746be695f.zip opie-c8383e3b2e83631f68ee93173422e83746be695f.tar.gz opie-c8383e3b2e83631f68ee93173422e83746be695f.tar.bz2 |
have overseen one
-rw-r--r-- | core/pim/addressbook/addressbook.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/pim/addressbook/addressbook.cpp b/core/pim/addressbook/addressbook.cpp index 5ce90a9..30fa85b 100644 --- a/core/pim/addressbook/addressbook.cpp +++ b/core/pim/addressbook/addressbook.cpp | |||
@@ -354,33 +354,33 @@ void AddressbookWindow::setDocument( const QString &filename ) | |||
354 | qWarning( "Found number of contacts in File: %d", allList.count() ); | 354 | qWarning( "Found number of contacts in File: %d", allList.count() ); |
355 | 355 | ||
356 | if ( !allList.count() ) { | 356 | if ( !allList.count() ) { |
357 | QMessageBox::information( this, "Import VCard", | 357 | QMessageBox::information( this, "Import VCard", |
358 | "It was impossible to import the VCard.\n" | 358 | "It was impossible to import the VCard.\n" |
359 | "The VCard may be corrupted!" ); | 359 | "The VCard may be corrupted!" ); |
360 | } | 360 | } |
361 | 361 | ||
362 | bool doAsk = true; | 362 | bool doAsk = true; |
363 | OContactAccess::List::Iterator it; | 363 | OContactAccess::List::Iterator it; |
364 | for ( it = allList.begin(); it != allList.end(); ++it ){ | 364 | for ( it = allList.begin(); it != allList.end(); ++it ){ |
365 | qWarning("Adding Contact from: %s", (*it).fullName().latin1() ); | 365 | qWarning("Adding Contact from: %s", (*it).fullName().latin1() ); |
366 | if ( doAsk ){ | 366 | if ( doAsk ){ |
367 | switch( QMessageBox::information( this, tr ( "Add Contact?" ), | 367 | switch( QMessageBox::information( this, tr ( "Add Contact?" ), |
368 | tr( "Do you really want add contact for \n%1?" ) | 368 | tr( "Do you really want add contact for \n%1?" ) |
369 | .arg( (*it).fullName().latin1() ), | 369 | .arg( (*it).fullName().latin1() ), |
370 | tr( "&Yes" ), tr( "&No" ), tr( "&AllYes"), | 370 | tr( "&Yes" ), tr( "&No" ), tr( "&All Yes"), |
371 | 0, // Enter == button 0 | 371 | 0, // Enter == button 0 |
372 | 2 ) ) { // Escape == button 2 | 372 | 2 ) ) { // Escape == button 2 |
373 | case 0: | 373 | case 0: |
374 | qWarning("YES clicked"); | 374 | qWarning("YES clicked"); |
375 | m_abView->addEntry( *it ); | 375 | m_abView->addEntry( *it ); |
376 | break; | 376 | break; |
377 | case 1: | 377 | case 1: |
378 | qWarning("NO clicked"); | 378 | qWarning("NO clicked"); |
379 | break; | 379 | break; |
380 | case 2: | 380 | case 2: |
381 | qWarning("YesAll clicked"); | 381 | qWarning("YesAll clicked"); |
382 | doAsk = false; | 382 | doAsk = false; |
383 | break; | 383 | break; |
384 | } | 384 | } |
385 | }else | 385 | }else |
386 | m_abView->addEntry( *it ); | 386 | m_abView->addEntry( *it ); |