diff options
Diffstat (limited to 'client/widgets')
-rw-r--r-- | client/widgets/window.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/widgets/window.cc b/client/widgets/window.cc index 84e370c..fa44875 100644 --- a/client/widgets/window.cc +++ b/client/widgets/window.cc @@ -27,11 +27,15 @@ #include "window.h" #include "common.h" +#include <QIcon> + Window::Window(QDomNode &node, MacroWindow *macrowindow) : QWidget(NULL), Widget(node, macrowindow) { setWindowFlags(Qt::WindowContextHelpButtonHint | Qt::WindowSystemMenuHint); + setWindowIcon(QIcon(":/icons/icon.png")); + setCommonAttributes(this, node); setCommonLayout(this, node); |