summaryrefslogtreecommitdiff
path: root/core/pim/addressbook/addressbook.cpp
Unidiff
Diffstat (limited to 'core/pim/addressbook/addressbook.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/addressbook/addressbook.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/core/pim/addressbook/addressbook.cpp b/core/pim/addressbook/addressbook.cpp
index c506e98..58fbccf 100644
--- a/core/pim/addressbook/addressbook.cpp
+++ b/core/pim/addressbook/addressbook.cpp
@@ -324,27 +324,25 @@ void AddressbookWindow::importvCard() {
324 324
325} 325}
326 326
327void AddressbookWindow::setDocument( const QString &filename ) 327void AddressbookWindow::setDocument( const QString &filename )
328{ 328{
329 qWarning( "void AddressbookWindow::setDocument( %s )", filename.latin1() ); 329 qWarning( "void AddressbookWindow::setDocument( %s )", filename.latin1() );
330 330
331 if ( filename.find(".vcf") != int(filename.length()) - 4 ){ 331 if ( filename.find(".vcf") != int(filename.length()) - 4 ){
332 332
333 333
334 334
335 switch( QMessageBox::information( this, tr ( "Right file type ?" ), 335 switch( QMessageBox::information( this, tr ( "Right file type ?" ),
336 tr( "The selected File" ) + ( "\n" ) + 336 tr( "The selected file \n does not end with \".vcf\" \n. Do you really want to open it?" ),
337 tr ("does not end with \".vcf\" ") + ( "\n" ) +
338 tr ( "Do you really want to open it?" ),
339 tr( "&Yes" ), tr( "&No" ), QString::null, 337 tr( "&Yes" ), tr( "&No" ), QString::null,
340 0, // Enter == button 0 338 0, // Enter == button 0
341 2 ) ) { // Escape == button 2 339 2 ) ) { // Escape == button 2
342 case 0: 340 case 0:
343 qWarning("YES clicked"); 341 qWarning("YES clicked");
344 break; 342 break;
345 case 1: 343 case 1:
346 qWarning("NO clicked"); 344 qWarning("NO clicked");
347 return; 345 return;
348 break; 346 break;
349 } 347 }
350 } 348 }
@@ -800,25 +798,25 @@ void AddressbookWindow::slotNotFound()
800{ 798{
801 qWarning("Got notfound signal !"); 799 qWarning("Got notfound signal !");
802 QMessageBox::information( this, tr( "Not Found" ), 800 QMessageBox::information( this, tr( "Not Found" ),
803 tr( "Unable to find a contact for this \n search pattern!" ) ); 801 tr( "Unable to find a contact for this \n search pattern!" ) );
804 802
805 803
806} 804}
807void AddressbookWindow::slotWrapAround() 805void AddressbookWindow::slotWrapAround()
808{ 806{
809 qWarning("Got wrap signal !"); 807 qWarning("Got wrap signal !");
810 // if ( doNotifyWrapAround ) 808 // if ( doNotifyWrapAround )
811 // QMessageBox::information( this, tr( "End of list" ), 809 // QMessageBox::information( this, tr( "End of list" ),
812 // tr( "End of list. Wrap around now.. !" ) + "\n" ); 810 // tr( "End of list. Wrap around now...!" ) + "\n" );
813 811
814} 812}
815 813
816void AddressbookWindow::slotSetCategory( int c ) 814void AddressbookWindow::slotSetCategory( int c )
817{ 815{
818 qWarning( "void AddressbookWindow::slotSetCategory( %d ) from %d", c, catMenu->count() ); 816 qWarning( "void AddressbookWindow::slotSetCategory( %d ) from %d", c, catMenu->count() );
819 817
820 QString cat, book; 818 QString cat, book;
821 AbView::Views view = AbView::TableView; 819 AbView::Views view = AbView::TableView;
822 820
823 if ( c <= 0 ) 821 if ( c <= 0 )
824 return; 822 return;