diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-21 16:22:56 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-21 16:22:56 +0000 |
commit | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (patch) | |
tree | 73817b5f3ca29478d158ce86aaf2e97572c92f57 /korganizer/korganizerifaceimpl.cpp | |
parent | 7973cbae4380599be85347745753327c94ebd806 (diff) | |
download | tdepim-f587f20a6d09f1729dd0a8c1cd8ee0110aec7451.tar.gz tdepim-f587f20a6d09f1729dd0a8c1cd8ee0110aec7451.zip |
Inverted canQueryClose DCOP signal for korganizer plugin, so that if the DCOP interface is unavailable Kontact will still be able to close
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1152640 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'korganizer/korganizerifaceimpl.cpp')
-rw-r--r-- | korganizer/korganizerifaceimpl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/korganizer/korganizerifaceimpl.cpp b/korganizer/korganizerifaceimpl.cpp index 5605d7a86..a88a41cd5 100644 --- a/korganizer/korganizerifaceimpl.cpp +++ b/korganizer/korganizerifaceimpl.cpp @@ -92,7 +92,7 @@ bool KOrganizerIfaceImpl::addIncidence( const QString &ical ) bool KOrganizerIfaceImpl::canQueryClose() { - return mActionManager->queryClose(); + return (!(mActionManager->queryClose())); } void KOrganizerIfaceImpl::loadProfile( const QString& path ) |