From 4020e87d2ec465b8bd2c6d3df8b33d55893d7fa9 Mon Sep 17 00:00:00 2001 From: Thomas McGuire Date: Mon, 17 Aug 2009 18:15:05 +0000 Subject: [PATCH] Fix kdebug porting error svn path=/trunk/KDE/kdepim/; revision=1012499 --- imapaccountbase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imapaccountbase.cpp b/imapaccountbase.cpp index 015a51ee4..e8f8d1d20 100644 --- a/imapaccountbase.cpp +++ b/imapaccountbase.cpp @@ -114,7 +114,7 @@ ImapAccountBase::ImapAccountBase( AccountManager *parent, const QString &name, u ImapAccountBase::~ImapAccountBase() { qDeleteAll (mBodyPartList ); - if ( !mSlave ) { + if ( mSlave ) { kWarning() << "Slave should have been destroyed by subclass!"; } }