mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-16 00:34:19 +00:00
Removed const-ness from some return types to take advantage of future c++0x advantages.
This commit is contained in:
parent
74469aaa83
commit
0853a9b686
154 changed files with 472 additions and 473 deletions
|
|
@ -69,7 +69,7 @@ Component* CameraDevice::createViewerComponent()
|
|||
return nullptr;
|
||||
}
|
||||
|
||||
const String CameraDevice::getFileExtension()
|
||||
String CameraDevice::getFileExtension()
|
||||
{
|
||||
return ".m4a"; // TODO correct?
|
||||
}
|
||||
|
|
@ -79,7 +79,7 @@ void CameraDevice::startRecordingToFile (const File& file, int quality)
|
|||
// TODO
|
||||
}
|
||||
|
||||
const Time CameraDevice::getTimeOfFirstRecordedFrame() const
|
||||
Time CameraDevice::getTimeOfFirstRecordedFrame() const
|
||||
{
|
||||
// TODO
|
||||
return Time();
|
||||
|
|
@ -100,7 +100,7 @@ void CameraDevice::removeListener (Listener* listenerToRemove)
|
|||
// TODO
|
||||
}
|
||||
|
||||
const StringArray CameraDevice::getAvailableDevices()
|
||||
StringArray CameraDevice::getAvailableDevices()
|
||||
{
|
||||
StringArray devs;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue