diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-08-16 18:35:44 -0600 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-08-16 18:35:44 -0600 |
commit | 822eb7558dd7ab4c3dbb86b63be547cdbc2ebb47 (patch) | |
tree | 1d65194e58892a65125dc1ad1ba7cdb0f81b38c7 /qt-ui/simplewidgets.cpp | |
parent | 4a7432e3d512977437afa3933cc242b6410b468a (diff) | |
download | subsurface-822eb7558dd7ab4c3dbb86b63be547cdbc2ebb47.tar.gz |
Selective copy: forgot tags in the UI
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/simplewidgets.cpp')
-rw-r--r-- | qt-ui/simplewidgets.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qt-ui/simplewidgets.cpp b/qt-ui/simplewidgets.cpp index b0b900fe4..772c8d1b9 100644 --- a/qt-ui/simplewidgets.cpp +++ b/qt-ui/simplewidgets.cpp @@ -428,6 +428,7 @@ DiveComponentSelection::DiveComponentSelection(QWidget *parent, struct dive *tar UI_FROM_COMPONENT(visibility); UI_FROM_COMPONENT(notes); UI_FROM_COMPONENT(suit); + UI_FROM_COMPONENT(tags); UI_FROM_COMPONENT(cylinders); UI_FROM_COMPONENT(weights); connect(ui.buttonBox, SIGNAL(clicked(QAbstractButton *)), this, SLOT(buttonClicked(QAbstractButton *))); @@ -448,6 +449,7 @@ void DiveComponentSelection::buttonClicked(QAbstractButton *button) COMPONENT_FROM_UI(visibility); COMPONENT_FROM_UI(notes); COMPONENT_FROM_UI(suit); + COMPONENT_FROM_UI(tags); COMPONENT_FROM_UI(cylinders); COMPONENT_FROM_UI(weights); selective_copy_dive(&displayed_dive, targetDive, *what, true); |