X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fbacklogmanager.cpp;h=45d2818f837588a2a1b19f34995a8f1f4ce3563c;hb=33a1a6f1bf47db069acae3eaa88a1aa156342002;hp=2ea49d5dae5b4706d80bf680a4b47ed5c7227121;hpb=b9169a652a6854b3fa85aee8f833cb9e18a8d510;p=quassel.git diff --git a/src/common/backlogmanager.cpp b/src/common/backlogmanager.cpp index 2ea49d5d..45d2818f 100644 --- a/src/common/backlogmanager.cpp +++ b/src/common/backlogmanager.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2018 by the Quassel Project * + * Copyright (C) 2005-2020 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -20,7 +20,6 @@ #include "backlogmanager.h" -INIT_SYNCABLE_OBJECT(BacklogManager) QVariantList BacklogManager::requestBacklog(BufferId bufferId, MsgId first, MsgId last, int limit, int additional) { REQUEST(ARG(bufferId), ARG(first), ARG(last), ARG(limit), ARG(additional)) @@ -33,6 +32,12 @@ QVariantList BacklogManager::requestBacklogFiltered(BufferId bufferId, MsgId fir return QVariantList(); } +QVariantList BacklogManager::requestBacklogForward(BufferId bufferId, MsgId first, MsgId last, int limit, int type, int flags) +{ + REQUEST(ARG(bufferId), ARG(first), ARG(last), ARG(limit), 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))