diff options
author | deva <deva> | 2008-09-10 13:31:07 +0000 |
---|---|---|
committer | deva <deva> | 2008-09-10 13:31:07 +0000 |
commit | 22b21fc392850974e2920804b641b1941140e46f (patch) | |
tree | d4ea97b7562abb5632e2c9d0c2c86ab8d1b93115 /client/widgets | |
parent | 13960b2e71db99ac6de3251d92d4490b08542635 (diff) |
We've got icons ... wee
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); |