From ebfa9f755100bfb73812137bb20d25c8e4291da9 Mon Sep 17 00:00:00 2001 From: Till Adam Date: Thu, 22 Jul 2004 19:17:09 +0000 Subject: [PATCH] Remove unused method that is a storage attribute anyhow. svn path=/trunk/kdepim/; revision=331840 --- kmfolder.cpp | 5 ----- kmfolder.h | 4 ---- 2 files changed, 9 deletions(-) diff --git a/kmfolder.cpp b/kmfolder.cpp index 5074011dd..535848d97 100644 --- a/kmfolder.cpp +++ b/kmfolder.cpp @@ -324,11 +324,6 @@ void KMFolder::emitMsgAddedSignals( int idx ) mStorage->emitMsgAddedSignals( idx ); } -bool KMFolder::canAddMsgNow( KMMessage* aMsg, int* aIndex_ret ) -{ - return mStorage->canAddMsgNow( aMsg, aIndex_ret ); -} - void KMFolder::removeMsg( int i, bool imapQuiet ) { mStorage->removeMsg( i, imapQuiet ); diff --git a/kmfolder.h b/kmfolder.h index bc08f055d..178dda8a8 100644 --- a/kmfolder.h +++ b/kmfolder.h @@ -178,10 +178,6 @@ public: Emits msgAdded signals */ void emitMsgAddedSignals(int idx); - /** Returns FALSE, if the message has to be retrieved from an IMAP account - * first. In this case this function does this and cares for the rest */ - bool canAddMsgNow(KMMessage* aMsg, int* aIndex_ret); - /** Remove (first occurrence of) given message from the folder. */ void removeMsg(int i, bool imapQuiet = FALSE); void removeMsg(QPtrList msgList, bool imapQuiet = FALSE);