- Mar 21, 2013
-
-
jsiegle authored
Use the following command to update the copyright year in all files, starting in the Source/ directory: find . -type f -print0 | xargs -0 sed -i 's/Copyright (C) 2012/Copyright (C) 2013/g' Works like a charm!
-
jsiegle authored
Added some comments and removed deprecated code.
-
jsiegle authored
MainWindow now points to the ProcessorGraph and AudioComponent with ScopedPointers. deleteAndZero must no longer be called in the destructor.
-
jsiegle authored
The main UI components now use ScopedPointers for their children, alleviating the need to call "deleteAllChildren" or "deleteAndZero" in the destructor.
-
jsiegle authored
-
jsiegle authored
-
jsiegle authored
-
jsiegle authored
-
jsiegle authored
-
jsiegle authored
-
jsiegle authored
-
- Mar 20, 2013
- Mar 15, 2013
-
-
jsiegle authored
-
- Mar 13, 2013
-
-
jsiegle authored
-
- Mar 12, 2013
- Feb 27, 2013
-
-
aacuevas authored
When many channels are selected for recording a race condition can cause a crash by writing to a file that has not been opened yet.
-
- Feb 13, 2013
- Feb 12, 2013
-
-
Marti Bolivar authored
It's unused, declared obsolete, and is triggering GCC warnings. If anyone wants it back, it'll be in the Git history. Signed-off-by:
Marti Bolivar <mbolivar@leaflabs.com>
-
Marti Bolivar authored
Signed-off-by:
Marti Bolivar <mbolivar@leaflabs.com>
-
Marti Bolivar authored
Signed-off-by:
Marti Bolivar <mbolivar@leaflabs.com>
-
Marti Bolivar authored
getInputChannelName() and getOutputChannelName() (pure virtual in the superclass) aren't returning anything. So far this hasn't triggered any memory errors because nobody's calling them. To hack around this, have both of these return "xxx-UNUSED-OPEN-EPHYS-xxx" (none of the existing subclases override these methods, so leaving them pure virtual isn't workable). This way, if we ever start calling these, we'll notice right away that a fix is needed (instead of segfaulting, etc.). Also keep them virtual to allow overrides. Signed-off-by:
Marti Bolivar <mbolivar@leaflabs.com>
-
Marti Bolivar authored
That's not gonna work. Since nullParam is just a "nothing found", put it in static storage and return that. Signed-off-by:
Marti Bolivar <mbolivar@leaflabs.com>
-
Marti Bolivar authored
It looks like declaring them to return bool was a mistake: 1. None of their callers check their return value. 2. They don't return a value, and it doesn't look like there's any reason for them to. Signed-off-by:
Marti Bolivar <mbolivar@leaflabs.com>
-
Marti Bolivar authored
If it's for internal use only, then enforce that. Signed-off-by:
Marti Bolivar <mbolivar@leaflabs.com>
-
Marti Bolivar authored
Fixes caught by -Wreturn-type. Have enable() properly return a value. Have disable() actually disable the Arduino, and then properly return a value. Signed-off-by:
Marti Bolivar <mbolivar@leaflabs.com>
-
Marti Bolivar authored
Signed-off-by:
Marti Bolivar <mbolivar@leaflabs.com>
-