mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-20 01:14:20 +00:00
Cleaned up some obscure compiler warnings and added some JSON unit tests.
This commit is contained in:
parent
796247483a
commit
2009753eac
41 changed files with 298 additions and 178 deletions
|
|
@ -1715,9 +1715,9 @@ void TextEditor::drawContent (Graphics& g)
|
|||
}
|
||||
}
|
||||
|
||||
for (int i = underlinedSections.size(); --i >= 0;)
|
||||
for (int j = underlinedSections.size(); --j >= 0;)
|
||||
{
|
||||
const Range<int>& underlinedSection = underlinedSections.getReference (i);
|
||||
const Range<int>& underlinedSection = underlinedSections.getReference (j);
|
||||
|
||||
Iterator i2 (sections, wordWrapWidth, passwordCharacter);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue