]> Creatis software - clitk.git/commitdiff
Change name of the button in Image Arithm tool
authortbaudier <thomas.baudier@creatis.insa-lyon.fr>
Mon, 4 Mar 2019 15:47:12 +0000 (16:47 +0100)
committertbaudier <thomas.baudier@creatis.insa-lyon.fr>
Mon, 4 Mar 2019 15:47:12 +0000 (16:47 +0100)
Before, it was QDialogButtonBox::Discard, but according to https://doc.qt.io/archives/qt-4.8/qdialogbuttonbox.html#StandardButton-enum
it can be displayed "Don't save".
For this tool, we want to select 1 image instead of 2, so the name of the button is not appropriate.
Moreover in skip function, the comparision to "Discard" can be complicated with another name.

So I prefer to use Ignore button because it's more appropriate

vv/vvToolSimpleInputSelectorWidget.cxx

index 49c5dbc53a451d189235250f6dd12beee869eb28..9ecadb40872fd7ddbcbae817f60357f42489760a 100644 (file)
@@ -66,7 +66,7 @@ void vvToolSimpleInputSelectorWidget::EnableAllowSkip(bool b)
 {
   mAllowSkip = b;
   if (mAllowSkip) {
-    mInputSelectionButtonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok|QDialogButtonBox::Discard);
+    mInputSelectionButtonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok|QDialogButtonBox::Ignore);
     connect(mInputSelectionButtonBox, SIGNAL(clicked(QAbstractButton*)), this, SLOT(skip(QAbstractButton*)));
   } else
     mInputSelectionButtonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
@@ -128,7 +128,7 @@ void vvToolSimpleInputSelectorWidget::reject()
 //------------------------------------------------------------------------------
 void vvToolSimpleInputSelectorWidget::skip(QAbstractButton* b)
 {
-  if (b->text() == "Discard") emit sigskip();
+  if (b->text() == "Ignore") emit sigskip();
 }
 //------------------------------------------------------------------------------