1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-24 01:54:22 +00:00

Removed const-ness from some return types to take advantage of future c++0x advantages.

This commit is contained in:
Julian Storer 2011-06-15 20:32:29 +01:00
parent 74469aaa83
commit 0853a9b686
154 changed files with 472 additions and 473 deletions

View file

@ -79,7 +79,7 @@ public:
close();
}
const StringArray getOutputChannelNames()
StringArray getOutputChannelNames()
{
StringArray s;
s.add ("Left");
@ -87,7 +87,7 @@ public:
return s;
}
const StringArray getInputChannelNames()
StringArray getInputChannelNames()
{
StringArray s;
@ -351,7 +351,7 @@ public:
int getIndexOfDevice (AudioIODevice* device, bool asInput) const { return device != nullptr ? 0 : -1; }
bool hasSeparateInputsAndOutputs() const { return false; }
const StringArray getDeviceNames (bool wantInputNames) const
StringArray getDeviceNames (bool wantInputNames) const
{
StringArray s;
s.add ("Android Audio");