1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-29 02:40:05 +00:00

Small fix for AudioThumbnail. Minor internal clean-ups.

This commit is contained in:
Julian Storer 2010-12-05 18:20:32 +00:00
parent 99085429b5
commit c3b257a088
13 changed files with 1446 additions and 1489 deletions

View file

@ -104,8 +104,6 @@ JUCE_API void JUCE_CALLTYPE shutdownJuce_NonGUI()
//==============================================================================
#if ! JUCE_ONLY_BUILD_CORE_LIBRARY
void juce_setCurrentThreadName (const String& name);
static bool juceInitialisedGUI = false;
JUCE_API void JUCE_CALLTYPE initialiseJuce_GUI()
@ -119,12 +117,9 @@ JUCE_API void JUCE_CALLTYPE initialiseJuce_GUI()
MessageManager::getInstance();
LookAndFeel::setDefaultLookAndFeel (0);
juce_setCurrentThreadName ("Juce Message Thread");
#if JUCE_DEBUG
// This section is just for catching people who mess up their project settings and
// turn RTTI off..
try
try // This section is just a safety-net for catching builds without RTTI enabled..
{
MemoryOutputStream mo;
OutputStream* o = &mo;