1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-22 01:34:21 +00:00

CustomTypeface unicode fix. Misc nullptr additions.

This commit is contained in:
Julian Storer 2011-04-07 16:49:14 +01:00
parent f04309f44a
commit 46c3a6bbe5
27 changed files with 219 additions and 186 deletions

View file

@ -130,7 +130,7 @@ void MessageManager::runDispatchLoop()
void MessageManager::stopDispatchLoop()
{
postMessageToQueue (new Message (quitMessageId, 0, 0, 0));
postMessageToQueue (new Message (quitMessageId, 0, 0, nullptr));
quitMessagePosted = true;
}
@ -240,13 +240,13 @@ private:
MessageManagerLock::MessageManagerLock (Thread* const threadToCheck)
: locked (false)
{
init (threadToCheck, 0);
init (threadToCheck, nullptr);
}
MessageManagerLock::MessageManagerLock (ThreadPoolJob* const jobToCheckForExitSignal)
: locked (false)
{
init (0, jobToCheckForExitSignal);
init (nullptr, jobToCheckForExitSignal);
}
void MessageManagerLock::init (Thread* const threadToCheck, ThreadPoolJob* const job)