]> Creatis software - clitk.git/blobdiff - vv/vvToolSimpleInputSelectorWidget.cxx
Debug RTStruct conversion with empty struc
[clitk.git] / vv / vvToolSimpleInputSelectorWidget.cxx
index 94c7aba1e75e5684751568a946182510e5b23e49..9ecadb40872fd7ddbcbae817f60357f42489760a 100644 (file)
@@ -3,7 +3,7 @@
 
   Authors belong to:
   - University of LYON              http://www.universite-lyon.fr/
-  - Léon Bérard cancer center       http://oncora1.lyon.fnclcc.fr
+  - Léon Bérard cancer center       http://www.centreleonberard.fr
   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
 
   This software is distributed WITHOUT ANY WARRANTY; without even
@@ -14,7 +14,7 @@
 
   - BSD        See included LICENSE.txt file
   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
-======================================================================-====*/
+===========================================================================**/
 #ifndef VVTOOLINPUTSELECTORWIDGET_CXX
 #define VVTOOLINPUTSELECTORWIDGET_CXX
 
@@ -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();
 }
 //------------------------------------------------------------------------------