X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fbacklogmanager.cpp;h=2ea49d5dae5b4706d80bf680a4b47ed5c7227121;hb=74226102118400b228618f7373137a4a01e7d85f;hp=aceeb2f1507586ec64dbb9016fc4807a81a1452f;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce;p=quassel.git diff --git a/src/common/backlogmanager.cpp b/src/common/backlogmanager.cpp index aceeb2f1..2ea49d5d 100644 --- a/src/common/backlogmanager.cpp +++ b/src/common/backlogmanager.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include "backlogmanager.h" @@ -27,9 +27,20 @@ QVariantList BacklogManager::requestBacklog(BufferId bufferId, MsgId first, MsgI return QVariantList(); } +QVariantList BacklogManager::requestBacklogFiltered(BufferId bufferId, MsgId first, MsgId last, int limit, int additional, int type, int flags) +{ + REQUEST(ARG(bufferId), ARG(first), ARG(last), ARG(limit), ARG(additional), ARG(type), ARG(flags)) + return QVariantList(); +} QVariantList BacklogManager::requestBacklogAll(MsgId first, MsgId last, int limit, int additional) { REQUEST(ARG(first), ARG(last), ARG(limit), ARG(additional)) return QVariantList(); } + +QVariantList BacklogManager::requestBacklogAllFiltered(MsgId first, MsgId last, int limit, int additional, int type, int flags) +{ + REQUEST(ARG(first), ARG(last), ARG(limit), ARG(additional), ARG(type), ARG(flags)) + return QVariantList(); +}