diff options
author | Christopher Dumas <christopherdumas@gmail.com> | 2019-05-25 16:43:15 -0700 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-05-27 21:40:53 +0200 |
commit | e3f81bce498523cc722524fc795f33e7d5c23c3e (patch) | |
tree | 135f279eb7919a61418a7dd261df2f144d317208 /Applications/IRCClient/IRCClient.h | |
parent | 63486b8438a9d1ec001adc1476a75b276ee308b3 (diff) | |
download | serenity-e3f81bce498523cc722524fc795f33e7d5c23c3e.zip |
IRC client setttings, Terminal settings, more WM settings
Diffstat (limited to 'Applications/IRCClient/IRCClient.h')
-rw-r--r-- | Applications/IRCClient/IRCClient.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Applications/IRCClient/IRCClient.h b/Applications/IRCClient/IRCClient.h index 4502cb0b5f..98fb7664ff 100644 --- a/Applications/IRCClient/IRCClient.h +++ b/Applications/IRCClient/IRCClient.h @@ -5,6 +5,7 @@ #include <AK/CircularQueue.h> #include <AK/Function.h> #include <LibCore/CTCPSocket.h> +#include <LibCore/CConfigFile.h> #include "IRCLogBuffer.h" #include "IRCWindow.h" @@ -111,7 +112,7 @@ private: void on_socket_connected(); - String m_hostname; + String m_hostname { "none" }; int m_port { 6667 }; CTCPSocket* m_socket { nullptr }; @@ -127,4 +128,5 @@ private: Retained<IRCWindowListModel> m_client_window_list_model; Retained<IRCLogBuffer> m_log; + Retained<CConfigFile> m_config; }; |