diff options
author | Gehad elrobey <gehadelrobey@gmail.com> | 2015-07-16 04:52:38 +0200 |
---|---|---|
committer | Lubomir I. Ivanov <neolit123@gmail.com> | 2015-07-20 15:28:42 +0300 |
commit | 7575bb169bd9285250df4ae88f3829dd504fe77f (patch) | |
tree | fb2f028330f34d97acd6d3aafdf8d7aa53fea647 /qt-ui/templateedit.cpp | |
parent | f8f645398857ca7cfb3c9496259e2ab638065642 (diff) | |
download | subsurface-7575bb169bd9285250df4ae88f3829dd504fe77f.tar.gz |
Printing: change 'Discard' to 'Cancel' button
Cancel button is more relevant to the dialog message.
Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com>
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Diffstat (limited to 'qt-ui/templateedit.cpp')
-rw-r--r-- | qt-ui/templateedit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-ui/templateedit.cpp b/qt-ui/templateedit.cpp index ff1c1b7ea..de69f8cc6 100644 --- a/qt-ui/templateedit.cpp +++ b/qt-ui/templateedit.cpp @@ -113,8 +113,8 @@ void TemplateEdit::saveSettings() if ((*templateOptions) != newTemplateOptions || grantlee_template.compare(ui->plainTextEdit->toPlainText())) { QMessageBox msgBox; msgBox.setText("Do you want to save your changes?"); - msgBox.setStandardButtons(QMessageBox::Save | QMessageBox::Discard); - msgBox.setDefaultButton(QMessageBox::Discard); + msgBox.setStandardButtons(QMessageBox::Save | QMessageBox::Cancel); + msgBox.setDefaultButton(QMessageBox::Cancel); if (msgBox.exec() == QMessageBox::Save) { memcpy(templateOptions, &newTemplateOptions, sizeof(struct template_options)); if (grantlee_template.compare(ui->plainTextEdit->toPlainText())) { |