diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-09-04 18:56:39 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-09-04 18:56:39 +0200 |
commit | e12bbc097fc0eef82189513644298ed95af0277a (patch) | |
tree | 9f0fe968c123433fb47f42e9c2c024c1540f202a /Applications | |
parent | 52f62c2d7eba8e96be6bda90b00e9023628bc86c (diff) | |
download | serenity-e12bbc097fc0eef82189513644298ed95af0277a.zip |
IRCClient: Add 16x16 icon
Diffstat (limited to 'Applications')
-rw-r--r-- | Applications/IRCClient/IRCAppWindow.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
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 <LibDraw/PNGLoader.h> #include <LibGUI/GAction.h> #include <LibGUI/GApplication.h> #include <LibGUI/GBoxLayout.h> @@ -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(); |