X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fbacklogmanager.cpp;h=8f2c47a472b4b62f08cc205daa63f51b063937d1;hp=63752517f2c7b7acaebe58519b3c7e0809f5cc5a;hb=11178af1008fd95b02ec9624fe4d394c477ac2bc;hpb=fb011e52bc6613198a65e037f0752f6361339aeb diff --git a/src/common/backlogmanager.cpp b/src/common/backlogmanager.cpp index 63752517..8f2c47a4 100644 --- a/src/common/backlogmanager.cpp +++ b/src/common/backlogmanager.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel IRC Team * + * Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -20,7 +20,12 @@ #include "backlogmanager.h" -QVariantList BacklogManager::requestBacklog(BufferId bufferId, int lastMsgs, int offset) { - emit backlogRequested(bufferId, lastMsgs, offset); +QVariantList BacklogManager::requestBacklog(BufferId bufferId, MsgId first, MsgId last, int limit, int additional) { + emit backlogRequested(bufferId, first, last, limit, additional); + return QVariantList(); +} + +QVariantList BacklogManager::requestBacklogAll(MsgId first, MsgId last, int limit, int additional) { + emit backlogAllRequested(first, last, limit, additional); return QVariantList(); }