X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclient.h;h=53ad0b5b5274df11f5ef4e938b1fbc5b84a0028d;hp=342f8d0f016f6961d00709c09d9e5aa1a093ed22;hb=fd7c2c4a41b5bb9cffcfe7a8f86a28ab7f38ac27;hpb=9a6a8478bdd8c7c5bb4ff1fa3de9510863d65a97 diff --git a/src/client/client.h b/src/client/client.h index 342f8d0f..53ad0b5b 100644 --- a/src/client/client.h +++ b/src/client/client.h @@ -31,7 +31,7 @@ class BufferInfo; class Message; class Identity; -class NetworkInfo; +class Network; class AbstractUi; @@ -51,8 +51,8 @@ public: static void destroy(); static void init(AbstractUi *); - static QList networkInfos(); - static NetworkInfo *networkInfo(uint networkid); + static QList networks(); + static Network *network(uint networkid); static QList allBufferInfos(); static QList buffers(); @@ -175,7 +175,7 @@ private slots: void layoutMsg(); void bufferDestroyed(); - void networkInfoDestroyed(); + void networkDestroyed(); void ircChannelAdded(QString); void coreIdentityCreated(const Identity &); void coreIdentityRemoved(IdentityId); @@ -202,7 +202,7 @@ private: QVariantMap coreConnectionInfo; QHash _buffers; - QHash _networkInfo; + QHash _network; QHash _identities; QTimer *layoutTimer;