X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fstorage.h;h=1ce0079bf8024938ff18e5a0622866ded353223f;hp=6786359cb06d0117d542eb8f0d5439f23fbbda6c;hb=9204e98848ab202c0117aa1428fa0ea10b4dcd75;hpb=c44861ebf9053fce279d2052e975a0fc800e254e diff --git a/src/core/storage.h b/src/core/storage.h index 6786359c..1ce0079b 100644 --- a/src/core/storage.h +++ b/src/core/storage.h @@ -212,15 +212,12 @@ class Storage : public QObject { */ virtual BufferInfo getBufferInfo(UserId user, const BufferId &bufferId) = 0; - //! Request a list of all buffers known to a user since a certain point in time. + //! Request a list of all buffers known to a user. /** This method is used to get a list of all buffers we have stored a backlog from. - * Optionally, a QDateTime can be given, so that only buffers are listed that where active - * since that point in time. * \param user The user whose buffers we request - * \param since If this is defined, older buffers will be ignored * \return A list of the BufferInfos for all buffers as requested */ - virtual QList requestBuffers(UserId user, QDateTime since = QDateTime()) = 0; + virtual QList requestBuffers(UserId user) = 0; //! Remove permanently a buffer and it's content from the storage backend /** This call cannot be reverted!