diff --git a/Source/Processors/Editors/RHD2000Editor.cpp b/Source/Processors/Editors/RHD2000Editor.cpp index a3aa4c6d3de87f034a102b76bd672a3ce0d8ae51..13b1813c71c21582c976b07bf54b9cc5ed750e65 100644 --- a/Source/Processors/Editors/RHD2000Editor.cpp +++ b/Source/Processors/Editors/RHD2000Editor.cpp @@ -185,7 +185,7 @@ void RHD2000Editor::stopAcquisition() } -void RHD2000Editor::saveEditorParameters(XmlElement* xml) +void RHD2000Editor::saveCustomParameters(XmlElement* xml) { xml->setAttribute("SampleRate", sampleRateInterface->getSelectedId()); xml->setAttribute("LowCut", bandwidthInterface->getLowerBandwidth()); @@ -193,7 +193,7 @@ void RHD2000Editor::saveEditorParameters(XmlElement* xml) xml->setAttribute("ADCsOn", adcButton->getToggleState()); } -void RHD2000Editor::loadEditorParameters(XmlElement* xml) +void RHD2000Editor::loadCustomParameters(XmlElement* xml) { sampleRateInterface->setSelectedId(xml->getIntAttribute("SampleRate")); diff --git a/Source/Processors/Editors/RHD2000Editor.h b/Source/Processors/Editors/RHD2000Editor.h index 9324aa45d1fa2da300730a75aac320335ab43586..aa0f2b27210639b6714e263f4c843c170784a38b 100644 --- a/Source/Processors/Editors/RHD2000Editor.h +++ b/Source/Processors/Editors/RHD2000Editor.h @@ -62,8 +62,8 @@ public: void channelChanged(int chan); - void saveEditorParameters(XmlElement* xml); - void loadEditorParameters(XmlElement* xml); + void saveCustomParameters(XmlElement* xml); + void loadCustomParameters(XmlElement* xml); private: