X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclient.h;fp=src%2Fclient%2Fclient.h;h=7850b0fc644f8c479f4178f5bdb9e3f9370129fc;hp=f8baa983820151f0f5b3a8637d7acc5c291242a6;hb=37110ceaa070167b4f40ed449ac9ea130503a792;hpb=f42dc2dd4b22600ca1dc6d8bdcc94aa16dda8276 diff --git a/src/client/client.h b/src/client/client.h index f8baa983..7850b0fc 100644 --- a/src/client/client.h +++ b/src/client/client.h @@ -167,13 +167,6 @@ public: emit showIgnoreList(ignoreRule); } -#if QT_VERSION < 0x050000 - static void logMessage(QtMsgType type, const char *msg); -#else - static void logMessage(QtMsgType, const QMessageLogContext&, const QString&); -#endif - static inline const QString &debugLog() { return instance()->_debugLogBuffer; } - void displayChannelList(NetworkId networkId) { emit showChannelList(networkId); } @@ -224,8 +217,6 @@ signals: void requestCreateNetwork(const NetworkInfo &info, const QStringList &persistentChannels = QStringList()); void requestRemoveNetwork(NetworkId); - void logUpdated(const QString &msg); - //! Emitted when a buffer has been marked as read /** This is currently triggered by setting lastSeenMsg, either local or remote, * or by bringing the window to front. @@ -327,9 +318,6 @@ private: bool _connected; - QString _debugLogBuffer; - QTextStream _debugLog; - QList > _userInputBuffer; friend class CoreConnection;