Fixed a bug, where the customviews were not so customizable on Linux.
[quassel.git] / src / client / client.h
index 7970651..ec9d8d6 100644 (file)
@@ -81,7 +81,6 @@ signals:
   void bufferSelected(Buffer *);
   void bufferUpdated(Buffer *);
   void bufferActivity(Buffer::ActivityLevel, Buffer *);
-  void bufferDestroyed(Buffer *);
   void backlogReceived(Buffer *, QList<Message>);
   void requestBacklog(BufferInfo, QVariant, QVariant);
   void requestNetworkStates();
@@ -125,7 +124,7 @@ private slots:
   void recvBacklogData(BufferInfo, QVariantList, bool);
   void updateBufferInfo(BufferInfo);
 
-  void removeBuffer(Buffer *);
+  void bufferDestroyed();
 
   void layoutMsg();
 
@@ -135,8 +134,6 @@ private:
   void init();
   
   void syncToCore(const QVariant &coreState);
-  QVariant connectToLocalCore(QString user, QString passwd);  // defined in main.cpp
-  void disconnectFromLocalCore();                             // defined in main.cpp
 
   static QPointer<Client> instanceptr;