Skip to content
Snippets Groups Projects
Commit e91e8122 authored by Aaron Cuevas Lopez's avatar Aaron Cuevas Lopez
Browse files

Fix Record Control not saving its parameters

parent 52c5214b
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment