Skip to content

Commit 405b0d1

Browse files
committed
Fix indexing issue in record control
1 parent 09d8161 commit 405b0d1

2 files changed

Lines changed: 11 additions & 5 deletions

File tree

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,30 @@
1-
Microsoft Visual Studio Solution File, Format Version 11.00
1+
Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 2013
3-
Project("{5A05F353-1D63-394C-DFB0-981BB2309002}") = "open-ephys", "open-ephys.vcxproj", "{9C924D66-7DEC-1AEF-B375-DB8666BFB909}"
3+
VisualStudioVersion = 12.0.31101.0
4+
MinimumVisualStudioVersion = 10.0.40219.1
5+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "open-ephys", "open-ephys.vcxproj", "{9C924D66-7DEC-1AEF-B375-DB8666BFB909}"
46
EndProject
57
Global
68
GlobalSection(SolutionConfigurationPlatforms) = preSolution
79
Debug|Win32 = Debug|Win32
8-
Release|Win32 = Release|Win32
910
Debug|x64 = Debug|x64
11+
Release|Win32 = Release|Win32
1012
Release|x64 = Release|x64
1113
EndGlobalSection
1214
GlobalSection(ProjectConfigurationPlatforms) = postSolution
1315
{9C924D66-7DEC-1AEF-B375-DB8666BFB909}.Debug|Win32.ActiveCfg = Debug|Win32
1416
{9C924D66-7DEC-1AEF-B375-DB8666BFB909}.Debug|Win32.Build.0 = Debug|Win32
15-
{9C924D66-7DEC-1AEF-B375-DB8666BFB909}.Release|Win32.ActiveCfg = Release|Win32
16-
{9C924D66-7DEC-1AEF-B375-DB8666BFB909}.Release|Win32.Build.0 = Release|Win32
1717
{9C924D66-7DEC-1AEF-B375-DB8666BFB909}.Debug|x64.ActiveCfg = Debug|x64
1818
{9C924D66-7DEC-1AEF-B375-DB8666BFB909}.Debug|x64.Build.0 = Debug|x64
19+
{9C924D66-7DEC-1AEF-B375-DB8666BFB909}.Release|Win32.ActiveCfg = Release|Win32
20+
{9C924D66-7DEC-1AEF-B375-DB8666BFB909}.Release|Win32.Build.0 = Release|Win32
1921
{9C924D66-7DEC-1AEF-B375-DB8666BFB909}.Release|x64.ActiveCfg = Release|x64
2022
{9C924D66-7DEC-1AEF-B375-DB8666BFB909}.Release|x64.Build.0 = Release|x64
2123
EndGlobalSection
2224
GlobalSection(SolutionProperties) = preSolution
2325
HideSolutionNode = FALSE
2426
EndGlobalSection
27+
GlobalSection(Performance) = preSolution
28+
HasPerformanceSessions = true
29+
EndGlobalSection
2530
EndGlobal

Source/Plugins/RecordControl/RecordControlEditor.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ void RecordControlEditor::updateSettings()
141141
String name;
142142
int oldId = availableChans->getSelectedId();
143143
availableChans->clear();
144+
eventSourceArray.clear();
144145
GenericProcessor* processor = getProcessor();
145146
availableChans->addItem("None", 1);
146147
int nextItem = 2;

0 commit comments

Comments
 (0)