X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoresession.h;h=22cfaf23f62582a7356cc13cc22b49c533fb264a;hp=d781f2114d7f5eef13d2ec225fd5247acf456aea;hb=f824db0e31b54969e0b7fa0b5405b1e9173d482c;hpb=4c83963b1d77f4c2dbae606876be0eee59f53dae diff --git a/src/core/coresession.h b/src/core/coresession.h index d781f211..22cfaf23 100644 --- a/src/core/coresession.h +++ b/src/core/coresession.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -28,8 +28,8 @@ #include "corealiasmanager.h" #include "message.h" -class BufferSyncer; class CoreBacklogManager; +class CoreBufferSyncer; class CoreBufferViewManager; class CoreIrcListHelper; class Identity; @@ -96,17 +96,10 @@ public slots: */ void removeNetwork(NetworkId network); - //! Remove a buffer and it's backlog permanently - /** \param bufferId The id of the buffer to be removed. - * emits bufferRemoved(bufferId) on success. - */ - void removeBufferRequested(BufferId bufferId); - //! Rename a Buffer for a given network /* \param networkId The id of the network the buffer belongs to * \param newName The new name of the buffer * \param oldName The old name of the buffer - * emits bufferRenamed(bufferId, newName) on success. */ void renameBuffer(const NetworkId &networkId, const QString &newName, const QString &oldName); @@ -136,8 +129,6 @@ signals: void networkCreated(NetworkId); void networkRemoved(NetworkId); - void bufferRemoved(BufferId); - void bufferRenamed(BufferId, QString); private slots: void removeClient(QIODevice *dev); @@ -147,8 +138,6 @@ private slots: void destroyNetwork(NetworkId); - void storeBufferLastSeenMsg(BufferId buffer, const MsgId &msgId); - void scriptRequest(QString script); void clientsConnected(); @@ -169,7 +158,7 @@ private: // QHash _networksToRemove; QHash _identities; - BufferSyncer *_bufferSyncer; + CoreBufferSyncer *_bufferSyncer; CoreBacklogManager *_backlogManager; CoreBufferViewManager *_bufferViewManager; CoreIrcListHelper *_ircListHelper;