diff options
| author | oldmud0 <oldmud0@users.noreply.github.com> | 2021-12-25 22:57:51 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-25 22:57:51 -0600 |
| commit | a180600bf4950cc547d11285a2ffbe46f7b63e9f (patch) | |
| tree | 2d559417c88ed5ab28abf102694757cf5ae59448 /include/courtroom.h | |
| parent | c57afe821e637fe08467848190a83553d913aaa6 (diff) | |
| parent | ee1bcbe79240eb8bb50d0506028e9824b58e41f5 (diff) | |
Merge pull request #623 from AttorneyOnline/feature/debug-log
Remove MS chat and add debug log
Diffstat (limited to 'include/courtroom.h')
| -rw-r--r-- | include/courtroom.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/include/courtroom.h b/include/courtroom.h index 9df3b901..8a41b605 100644 --- a/include/courtroom.h +++ b/include/courtroom.h @@ -216,8 +216,12 @@ public: void list_music(); void list_areas(); - // these are for OOC chat - void append_ms_chatmessage(QString f_name, QString f_message); + // Debug log (formerly master server chat log) + void debug_message_handler(QtMsgType type, const QMessageLogContext &context, + const QString &msg); + void append_debug_message(QString f_message); + + // OOC chat log void append_server_chatmessage(QString p_name, QString p_message, QString p_color); @@ -630,7 +634,7 @@ private: QTextEdit *ui_ic_chatlog; - AOTextArea *ui_ms_chatlog; + AOTextArea *ui_debug_log; AOTextArea *ui_server_chatlog; QListWidget *ui_mute_list; |
