1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-25 02:04:23 +00:00

Minor tweaks to LookAndFeel, VST wrapper.

This commit is contained in:
Julian Storer 2010-10-04 18:32:25 +01:00
parent 098f0af3ed
commit 38c64a7840
9 changed files with 32 additions and 21 deletions

View file

@ -137,7 +137,7 @@ public:
static void copyChars (juce_wchar* const dest, const juce_wchar* const src, const size_t numChars) throw()
{
jassert (src != 0 & dest != 0);
jassert (src != 0 && dest != 0);
memcpy (dest, src, numChars * sizeof (juce_wchar));
dest [numChars] = 0;
}