From: Marcus Eggenberger Date: Mon, 29 Dec 2008 18:02:10 +0000 (+0100) Subject: removing deprecated stuff X-Git-Tag: 0.4.0~310 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=06425de049985c2300deec83f3d10bb7a0550c82;hp=3c2914faeb01f3bc32e29f40179ae88040fbcf59 removing deprecated stuff --- diff --git a/src/core/coresession.cpp b/src/core/coresession.cpp index fd9a872e..1e21b64c 100644 --- a/src/core/coresession.cpp +++ b/src/core/coresession.cpp @@ -80,7 +80,6 @@ CoreSession::CoreSession(UserId uid, bool restoreState, QObject *parent) foreach(BufferId id, lastSeenHash.keys()) _bufferSyncer->requestSetLastSeenMsg(id, lastSeenHash[id]); - // connect(_bufferSyncer, SIGNAL(lastSeenMsgSet(BufferId, MsgId)), this, SLOT(storeBufferLastSeenMsg(BufferId, MsgId))); connect(&(Core::instance()->syncTimer()), SIGNAL(timeout()), _bufferSyncer, SLOT(storeDirtyIds())); p->synchronize(_bufferSyncer); @@ -265,10 +264,6 @@ QVariant CoreSession::sessionState() { return v; } -void CoreSession::storeBufferLastSeenMsg(BufferId buffer, const MsgId &msgId) { - Core::setBufferLastSeenMsg(user(), buffer, msgId); -} - void CoreSession::initScriptEngine() { signalProxy()->attachSlot(SIGNAL(scriptRequest(QString)), this, SLOT(scriptRequest(QString))); signalProxy()->attachSignal(this, SIGNAL(scriptResult(QString))); diff --git a/src/core/coresession.h b/src/core/coresession.h index e47698e0..5263be71 100644 --- a/src/core/coresession.h +++ b/src/core/coresession.h @@ -138,8 +138,6 @@ private slots: void destroyNetwork(NetworkId); - void storeBufferLastSeenMsg(BufferId buffer, const MsgId &msgId); - void scriptRequest(QString script); void clientsConnected();