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

Removed some superfluous juce:: namespaces from the juce_blocks_basics module

This commit is contained in:
ed 2019-02-18 12:23:49 +00:00
parent 174934bf85
commit 464b1f8eb2
32 changed files with 221 additions and 221 deletions

View file

@ -52,7 +52,7 @@ void BitmapLEDProgram::setLED (uint32 x, uint32 y, LEDColour colour)
}
}
juce::String BitmapLEDProgram::getLittleFootProgram()
String BitmapLEDProgram::getLittleFootProgram()
{
String program (R"littlefoot(
@ -77,8 +77,8 @@ juce::String BitmapLEDProgram::getLittleFootProgram()
)littlefoot");
if (auto ledGrid = block.getLEDGrid())
return program.replace ("NUM_COLUMNS", juce::String (ledGrid->getNumColumns()))
.replace ("NUM_ROWS", juce::String (ledGrid->getNumRows()));
return program.replace ("NUM_COLUMNS", String (ledGrid->getNumColumns()))
.replace ("NUM_ROWS", String (ledGrid->getNumRows()));
jassertfalse;
return {};