summaryrefslogtreecommitdiffstats
path: root/qt-ui/usersurvey.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2014-08-15 21:41:41 -0600
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-08-15 21:41:41 -0600
commit64c9fff850e794812c22e7fdf8e2d15938138a48 (patch)
treefebe20adb80a8c8928022d10701c4fc0b815f6db /qt-ui/usersurvey.cpp
parente8d430341c1102c0da1a3847ad2d39f41fc642d3 (diff)
downloadsubsurface-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.cpp1
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()));