diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-11-16 17:37:31 +0100 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-11-18 08:16:12 +0100 |
commit | 0689f46cc7f0939c0b52560954a3a210cbad053a (patch) | |
tree | 30573c57db7f03d72c8a475f6cff4c6fd0e163cf /src/qt/coincontroltreewidget.h | |
parent | af6e093f062548d850b6eb510240aeb1ff24e2a3 (diff) |
Coincontrol cleanup (e.g. add missing license)
- add missing license headers
- make compatible with Qt5
- enforce header cleanup style
- small code style cleanups
- rename Coin Control dialog into Coin Control Address Selection
- use default font for the windows labels (no monospace)
Diffstat (limited to 'src/qt/coincontroltreewidget.h')
-rw-r--r-- | src/qt/coincontroltreewidget.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/qt/coincontroltreewidget.h b/src/qt/coincontroltreewidget.h index e55b98af68..a2cd34eb88 100644 --- a/src/qt/coincontroltreewidget.h +++ b/src/qt/coincontroltreewidget.h @@ -1,17 +1,22 @@ +// Copyright (c) 2011-2013 The Bitcoin developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #ifndef COINCONTROLTREEWIDGET_H #define COINCONTROLTREEWIDGET_H #include <QKeyEvent> #include <QTreeWidget> -class CoinControlTreeWidget : public QTreeWidget { -Q_OBJECT +class CoinControlTreeWidget : public QTreeWidget +{ + Q_OBJECT public: explicit CoinControlTreeWidget(QWidget *parent = 0); protected: - virtual void keyPressEvent(QKeyEvent *event); + virtual void keyPressEvent(QKeyEvent *event); }; #endif // COINCONTROLTREEWIDGET_H
\ No newline at end of file |