diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-08-15 21:41:41 -0600 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-08-15 21:41:41 -0600 |
commit | 64c9fff850e794812c22e7fdf8e2d15938138a48 (patch) | |
tree | febe20adb80a8c8928022d10701c4fc0b815f6db /qt-ui/usersurvey.cpp | |
parent | e8d430341c1102c0da1a3847ad2d39f41fc642d3 (diff) | |
download | subsurface-64c9fff850e794812c22e7fdf8e2d15938138a48.tar.gz |
Survey: rename "Save" button to "Send"
Fixes #701
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/usersurvey.cpp')
-rw-r--r-- | qt-ui/usersurvey.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-ui/usersurvey.cpp b/qt-ui/usersurvey.cpp index f436fce47..a8916c990 100644 --- a/qt-ui/usersurvey.cpp +++ b/qt-ui/usersurvey.cpp @@ -15,6 +15,7 @@ UserSurvey::UserSurvey(QWidget *parent) : QDialog(parent), ui(new Ui::UserSurvey) { ui->setupUi(this); + ui->buttonBox->buttons().first()->setText(tr("Send")); this->adjustSize(); QShortcut *closeKey = new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_W), this); connect(closeKey, SIGNAL(activated()), this, SLOT(close())); |