diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2014-09-17 14:17:41 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-09-17 15:27:33 -0700 |
commit | abc5d5864cbf8e47d102b04d359a89fce13d0eb8 (patch) | |
tree | 6f921dd17d39926ab4a4188e8a49186540910819 /qt-ui/simplewidgets.cpp | |
parent | 815f9d204f1ee43d145f129113ad48d51541fb47 (diff) | |
download | subsurface-abc5d5864cbf8e47d102b04d359a89fce13d0eb8.tar.gz |
Add the Tag Widget on the MainWindow
Place the TagWidget on the correct place on the main window.
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/simplewidgets.cpp')
-rw-r--r-- | qt-ui/simplewidgets.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/qt-ui/simplewidgets.cpp b/qt-ui/simplewidgets.cpp index 772c8d1b9..e9bfc3cba 100644 --- a/qt-ui/simplewidgets.cpp +++ b/qt-ui/simplewidgets.cpp @@ -455,3 +455,8 @@ void DiveComponentSelection::buttonClicked(QAbstractButton *button) selective_copy_dive(&displayed_dive, targetDive, *what, true); } } + +TagFilter::TagFilter(QWidget *parent): QWidget(parent) +{ + ui.setupUi(this); +} |