diff --git a/Source/Processors/Editors/RecordControlEditor.cpp b/Source/Processors/Editors/RecordControlEditor.cpp
index b595daa41565edcaa83abbd9b5189ac85c6eb64f..e97638e92e7ef4e9c97f9d67a6d9c47c78b12584 100644
--- a/Source/Processors/Editors/RecordControlEditor.cpp
+++ b/Source/Processors/Editors/RecordControlEditor.cpp
@@ -103,7 +103,7 @@ void RecordControlEditor::updateSettings()
 
 }
 
-void RecordControlEditor::saveEditorParameters(XmlElement* xml)
+void RecordControlEditor::saveCustomParameters(XmlElement* xml)
 {
 
     XmlElement* info = xml->createNewChildElement("PARAMETERS");
@@ -114,7 +114,7 @@ void RecordControlEditor::saveEditorParameters(XmlElement* xml)
 
 }
 
-void RecordControlEditor::loadEditorParameters(XmlElement* xml)
+void RecordControlEditor::loadCustomParameters(XmlElement* xml)
 {
 
     forEachXmlChildElement(*xml, xmlNode)
diff --git a/Source/Processors/Editors/RecordControlEditor.h b/Source/Processors/Editors/RecordControlEditor.h
index 4fcc99a6a3ccc4c21c15ad7643cb7e84d02ad0ff..0976ac133237f0e87964658d41e651269175f39c 100644
--- a/Source/Processors/Editors/RecordControlEditor.h
+++ b/Source/Processors/Editors/RecordControlEditor.h
@@ -44,8 +44,8 @@ public:
     void comboBoxChanged(ComboBox* comboBox);
     void updateSettings();
     void buttonEvent(Button* button);
-    void loadEditorParameters(XmlElement*);
-    void saveEditorParameters(XmlElement*);
+    void loadCustomParameters(XmlElement*);
+    void saveCustomParameters(XmlElement*);
 
 private:
     ScopedPointer<ComboBox> availableChans;