diff --git a/app/Widgets/FilterChoice.cpp b/app/Widgets/FilterChoice.cpp
index dd12b6f284d1d15e463db76357cd50ceaa209373..35738f065830c537d02818b887c057cfe54b23c6 100644
--- a/app/Widgets/FilterChoice.cpp
+++ b/app/Widgets/FilterChoice.cpp
@@ -116,8 +116,8 @@ void FilterChoice::initUI()
     _stdDevBox->setVisible(false);
 
     QGroupBox* radioBox = new QGroupBox(tr("Resulting image type"));
-    _stdResButton = new QRadioButton(tr("Standard"));
-    _dblResButton = new QRadioButton(tr("Floating point"));
+    _stdResButton = new QRadioButton(tr("UChar"));
+    _dblResButton = new QRadioButton(tr("Double"));
     radioBox->setLayout(new QHBoxLayout());
     radioBox->layout()->addWidget(_stdResButton);
     radioBox->layout()->addWidget(_dblResButton);
diff --git a/app/Widgets/FilterEditor.cpp b/app/Widgets/FilterEditor.cpp
index c856ffaf9d7882f84586d7db8fdff517c2c75b41..c0773199d563d8960a47f79383619d68165845b4 100644
--- a/app/Widgets/FilterEditor.cpp
+++ b/app/Widgets/FilterEditor.cpp
@@ -151,33 +151,33 @@ void FilterEditor::saveXML(vector<Filter*> filtersToSave)
   }
   else
   {
-    file.open(QIODevice::ReadOnly);
-	  doc.setContent(&file);
-	  file.close();
-    
-    QDomElement root = doc.documentElement();
-    QDomNode child = root.firstChild();
-	  while(!child.isNull())
-	  {
-      QDomElement e = child.toElement();
-	    // We know how to treat appearance and geometry
-	    if (e.attribute("name") == _name->text())
-	    {
-          QMessageBox msgBox(QMessageBox::Warning, tr("Warning!"), tr("This filter name is already use."));
-        msgBox.setInformativeText(tr("Do you want to replace it?"));
-        msgBox.setStandardButtons(QMessageBox::No|QMessageBox::Yes);
-        msgBox.setDefaultButton(QMessageBox::No);
-        int ret = msgBox.exec();
-        if(ret == QMessageBox::Yes)
+        file.open(QIODevice::ReadOnly);
+        doc.setContent(&file);
+        file.close();
+
+        QDomElement root = doc.documentElement();
+        QDomNode child = root.firstChild();
+        while(!child.isNull())
         {
-          oldFilter = e;
-          replace = true;
+            QDomElement e = child.toElement();
+            // We know how to treat appearance and geometry
+            if (e.attribute("name") == _name->text())
+            {
+                QMessageBox msgBox(QMessageBox::Warning, tr("Warning!"), tr("This filter name is already use."));
+                msgBox.setInformativeText(tr("Do you want to replace it?"));
+                msgBox.setStandardButtons(QMessageBox::No|QMessageBox::Yes);
+                msgBox.setDefaultButton(QMessageBox::No);
+                int ret = msgBox.exec();
+                if(ret == QMessageBox::Yes)
+                {
+                    oldFilter = e;
+                    replace = true;
+                }
+                else
+                    return;
+            }
+            child = child.nextSibling();
         }
-        else
-          return;
-      }
-      child = child.nextSibling();
-	  }
   }
 
   // root node