1
0
Fork 0
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:
Julian Storer 2010-04-15 11:09:20 +01:00
parent e6237b5154
commit c76e500574
32 changed files with 329 additions and 357 deletions

View file

@ -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;