author | eilers <eilers> | 2003-05-09 13:33:22 (UTC) |
---|---|---|
committer | eilers <eilers> | 2003-05-09 13:33:22 (UTC) |
commit | 98196030da571da62ecb2fdd67e77a1e941d175a (patch) (unidiff) | |
tree | 1e1503f576a591ca5dac01a110e06a4b97d13eda | |
parent | b398b872aea2b00ce27536c1894babbcd76c8703 (diff) | |
download | opie-98196030da571da62ecb2fdd67e77a1e941d175a.zip opie-98196030da571da62ecb2fdd67e77a1e941d175a.tar.gz opie-98196030da571da62ecb2fdd67e77a1e941d175a.tar.bz2 |
Had misunderstanding about name of the qcop call and show closed the app
immediately..
-rw-r--r-- | core/pim/addressbook/addressbook.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/core/pim/addressbook/addressbook.cpp b/core/pim/addressbook/addressbook.cpp index e053e94..975911e 100644 --- a/core/pim/addressbook/addressbook.cpp +++ b/core/pim/addressbook/addressbook.cpp | |||
@@ -649,12 +649,14 @@ static void parseName( const QString& name, QString *first, QString *middle, | |||
649 | 649 | ||
650 | } | 650 | } |
651 | 651 | ||
652 | 652 | ||
653 | void AddressbookWindow::appMessage(const QCString &msg, const QByteArray &data) | 653 | void AddressbookWindow::appMessage(const QCString &msg, const QByteArray &data) |
654 | { | 654 | { |
655 | qWarning("Receiving QCop-Call with message %s", QString( msg ).latin1() ); | ||
656 | |||
655 | if (msg == "editPersonal()") { | 657 | if (msg == "editPersonal()") { |
656 | editPersonal(); | 658 | editPersonal(); |
657 | } else if (msg == "editPersonalAndClose()") { | 659 | } else if (msg == "editPersonalAndClose()") { |
658 | editPersonal(); | 660 | editPersonal(); |
659 | close(); | 661 | close(); |
660 | } else if ( msg == "addContact(QString,QString)" ) { | 662 | } else if ( msg == "addContact(QString,QString)" ) { |
@@ -683,29 +685,33 @@ void AddressbookWindow::appMessage(const QCString &msg, const QByteArray &data) | |||
683 | return; // can't beam a non-existent file | 685 | return; // can't beam a non-existent file |
684 | 686 | ||
685 | Ir *ir = new Ir( this ); | 687 | Ir *ir = new Ir( this ); |
686 | connect( ir, SIGNAL( done( Ir * ) ), this, SLOT( beamDone( Ir * ) ) ); | 688 | connect( ir, SIGNAL( done( Ir * ) ), this, SLOT( beamDone( Ir * ) ) ); |
687 | QString description = "mycard.vcf"; | 689 | QString description = "mycard.vcf"; |
688 | ir->send( beamFilename, description, "text/x-vCard" ); | 690 | ir->send( beamFilename, description, "text/x-vCard" ); |
689 | } else if ( msg == "showUid(int)" ) { | 691 | } else if ( msg == "show(int)" ) { |
690 | QDataStream stream(data,IO_ReadOnly); | 692 | QDataStream stream(data,IO_ReadOnly); |
691 | int uid; | 693 | int uid; |
692 | stream >> uid; | 694 | stream >> uid; |
693 | 695 | ||
696 | qWarning( "Showing uid: %d" , uid ); | ||
697 | |||
694 | // Deactivate Personal View.. | 698 | // Deactivate Personal View.. |
695 | if ( actionPersonal->isOn() ){ | 699 | if ( actionPersonal->isOn() ){ |
696 | actionPersonal->setOn( false ); | 700 | actionPersonal->setOn( false ); |
697 | slotPersonalView(); | 701 | slotPersonalView(); |
698 | } | 702 | } |
699 | 703 | ||
700 | // Reset category and show as card.. | 704 | // Reset category and show as card.. |
701 | m_abView -> setShowByCategory( QString::null ); | 705 | m_abView -> setShowByCategory( QString::null ); |
702 | m_abView -> setCurrentUid( uid ); | 706 | m_abView -> setCurrentUid( uid ); |
703 | slotViewSwitched ( AbView::CardView ); | 707 | slotViewSwitched ( AbView::CardView ); |
708 | |||
709 | qApp->exec(); | ||
704 | 710 | ||
705 | } else if ( msg == "editUid(int)" ) { | 711 | } else if ( msg == "edit(int)" ) { |
706 | QDataStream stream(data,IO_ReadOnly); | 712 | QDataStream stream(data,IO_ReadOnly); |
707 | int uid; | 713 | int uid; |
708 | stream >> uid; | 714 | stream >> uid; |
709 | 715 | ||
710 | // Deactivate Personal View.. | 716 | // Deactivate Personal View.. |
711 | if ( actionPersonal->isOn() ){ | 717 | if ( actionPersonal->isOn() ){ |