From e91e8122b236aa6ff4ea1d280ae8a85a6400eb78 Mon Sep 17 00:00:00 2001 From: Aaron Cuevas Lopez <aacuelo@teleco.upv.es> Date: Wed, 6 Aug 2014 01:34:38 +0200 Subject: [PATCH] Fix Record Control not saving its parameters --- Source/Processors/Editors/RecordControlEditor.cpp | 4 ++-- Source/Processors/Editors/RecordControlEditor.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Processors/Editors/RecordControlEditor.cpp b/Source/Processors/Editors/RecordControlEditor.cpp index b595daa41..e97638e92 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 4fcc99a6a..0976ac133 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; -- GitLab