X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcorebacklogmanager.h;h=1ed64b605d49bcb88633453c0c4dc267f25a335a;hp=260f99f85bbe8a416dddb9cf8e8fde5d3aaee2e7;hb=7c9c1b348382b8b77f96a883945c522d32a478d5;hpb=26b9300ccab24e526a9f43bef95a2a70f59161df diff --git a/src/core/corebacklogmanager.h b/src/core/corebacklogmanager.h index 260f99f8..1ed64b60 100644 --- a/src/core/corebacklogmanager.h +++ b/src/core/corebacklogmanager.h @@ -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 * @@ -31,12 +31,11 @@ class CoreBacklogManager : public BacklogManager { public: CoreBacklogManager(CoreSession *coreSession = 0); - inline virtual const QMetaObject *syncMetaObject() const { return &BacklogManager::staticMetaObject; } - CoreSession *coreSession() { return _coreSession; } public slots: - virtual QVariantList requestBacklog(BufferId bufferId, int limit = -1, int offset = -1); + virtual QVariantList requestBacklog(BufferId bufferId, MsgId first = -1, MsgId last = -1, int limit = -1, int additional = 0); + virtual QVariantList requestBacklogAll(MsgId first = -1, MsgId last = -1, int limit = -1, int additional = 0); private: CoreSession *_coreSession;