mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-04 03:40:07 +00:00
Minor clean-ups.
This commit is contained in:
parent
e6237b5154
commit
c76e500574
32 changed files with 329 additions and 357 deletions
|
|
@ -54,11 +54,11 @@ const String LocalisedStrings::translate (const String& text) const
|
|||
|
||||
static int findCloseQuote (const String& text, int startPos)
|
||||
{
|
||||
tchar lastChar = 0;
|
||||
juce_wchar lastChar = 0;
|
||||
|
||||
for (;;)
|
||||
{
|
||||
const tchar c = text [startPos];
|
||||
const juce_wchar c = text [startPos];
|
||||
|
||||
if (c == 0 || (c == '"' && lastChar != '\\'))
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue