Skip to content

Commit

Permalink
fixed small bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
David Medine committed Mar 7, 2016
1 parent 1eee95a commit 3ba28ed
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions LabRecorder.vcproj
Original file line number Diff line number Diff line change
Expand Up @@ -261,10 +261,10 @@
UniqueIdentifier="{71ED8ED8-ACB9-4CE9-BBE1-E00B30144E11}"
>
<File
RelativePath="release\moc_mainwindow.cpp"
RelativePath="debug\moc_mainwindow.cpp"
>
<FileConfiguration
Name="Debug|Win32"
Name="Release|Win32"
ExcludedFromBuild="true"
>
<Tool
Expand All @@ -273,10 +273,10 @@
</FileConfiguration>
</File>
<File
RelativePath="debug\moc_mainwindow.cpp"
RelativePath="release\moc_mainwindow.cpp"
>
<FileConfiguration
Name="Release|Win32"
Name="Debug|Win32"
ExcludedFromBuild="true"
>
<Tool
Expand Down
2 changes: 1 addition & 1 deletion default_config.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# The syntax is as in: StorageLocation = "C:\\Recordings\\subject%n\\block_%b.xdf"

#StorageLocation=C:\Recordings\CurrentStudy\exp%n\block_%b\untitled.xdf
StorageLocation=D:\labrecorder_testdir\exp%n\foo.xdf
StorageLocation=D:\labrecorder_testdir\exp%n\untitled.xdf



Expand Down
3 changes: 2 additions & 1 deletion mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,8 @@ void MainWindow::refreshStreams(void) {
got_one = true;
break;
}
if(got_one==false)
if(got_one==false) // TODO, check to make sure this isn't an emtpy string!
if(*it1!="")
missingStreams.push_back(*it1); // push this string onto the missing vector
}

Expand Down

0 comments on commit 3ba28ed

Please sign in to comment.