diff --git a/Applications/IRCClient/IRCAppWindow.cpp b/Applications/IRCClient/IRCAppWindow.cpp index 9685a60051..16667fdc8c 100644 --- a/Applications/IRCClient/IRCAppWindow.cpp +++ b/Applications/IRCClient/IRCAppWindow.cpp @@ -2,6 +2,7 @@ #include "IRCChannel.h" #include "IRCWindow.h" #include "IRCWindowListModel.h" +#include #include #include #include @@ -27,6 +28,8 @@ IRCAppWindow::IRCAppWindow() ASSERT(!s_the); s_the = this; + set_icon(load_png("/res/icons/16x16/app-irc-client.png")); + update_title(); set_rect(200, 200, 600, 400); setup_actions(); diff --git a/Base/res/icons/16x16/app-irc-client.png b/Base/res/icons/16x16/app-irc-client.png new file mode 100644 index 0000000000..82c1a5c273 Binary files /dev/null and b/Base/res/icons/16x16/app-irc-client.png differ