author | zautrix <zautrix> | 2004-09-07 20:33:23 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-09-07 20:33:23 (UTC) |
commit | 64a8ef1629f523df3006de5cb2b9882a50d96a05 (patch) (side-by-side diff) | |
tree | b931dc5397b4eec926603080b20eddda131999ff /kaddressbook | |
parent | 9d5c8750ae671e73ec8ebc0a71f30fd30680f2c0 (diff) | |
download | kdepimpi-64a8ef1629f523df3006de5cb2b9882a50d96a05.zip kdepimpi-64a8ef1629f523df3006de5cb2b9882a50d96a05.tar.gz kdepimpi-64a8ef1629f523df3006de5cb2b9882a50d96a05.tar.bz2 |
Fixed Kopi-Kapi external app communication
-rw-r--r-- | kaddressbook/kabcore.cpp | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index 4299ebd..2f9f1df 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp @@ -2057,8 +2057,9 @@ void KABCore::requestForDetails(const QString& sourceChannel, const QString& ses emaillist = mAddressBook->findByEmail( email ); - + qDebug("count %d %d ", namelist.count(),emaillist.count() ); //check if we have a match in Namelist and Emaillist - if ((namelist.count() == 0) && (emaillist.count() > 0)) - foundUid == emaillist[0].uid(); + if ((namelist.count() == 0) && (emaillist.count() > 0)) { + foundUid = emaillist[0].uid(); + } else if ((namelist.count() > 0) && (emaillist.count() == 0)) - foundUid == namelist[0].uid(); + foundUid = namelist[0].uid(); else @@ -2071,3 +2072,3 @@ void KABCore::requestForDetails(const QString& sourceChannel, const QString& ses { - foundUid == namelist[i].uid(); + foundUid = namelist[i].uid(); } @@ -2084,2 +2085,3 @@ void KABCore::requestForDetails(const QString& sourceChannel, const QString& ses { + // raise Ka/Pi if it is in the background @@ -2087,3 +2089,3 @@ void KABCore::requestForDetails(const QString& sourceChannel, const QString& ses #ifndef KORG_NODCOP - QCopEnvelope e("QPE/Application/kapi", "raise()"); + //QCopEnvelope e("QPE/Application/kapi", "raise()"); #endif @@ -2092,2 +2094,3 @@ void KABCore::requestForDetails(const QString& sourceChannel, const QString& ses mMainWindow->showMaximized(); + mMainWindow-> raise(); |