1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-03 03:30:06 +00:00

New class: ScopedPointer, which auto-releases a pointer when it goes out of scope. I've used this extensively to replace a lot of pointer deletions with more RAII-style patterns.

This commit is contained in:
Julian Storer 2010-01-02 23:01:18 +00:00
parent 4ed1d791e5
commit c22c06c80c
126 changed files with 1454 additions and 1838 deletions

View file

@ -35,18 +35,14 @@ BEGIN_JUCE_NAMESPACE
//==============================================================================
SplashScreen::SplashScreen()
: backgroundImage (0),
isImageInCache (false)
: backgroundImage (0)
{
setOpaque (true);
}
SplashScreen::~SplashScreen()
{
if (isImageInCache)
ImageCache::release (backgroundImage);
else
delete backgroundImage;
ImageCache::releaseOrDelete (backgroundImage);
}
//==============================================================================
@ -62,8 +58,6 @@ void SplashScreen::show (const String& title,
if (backgroundImage_ != 0)
{
isImageInCache = ImageCache::isImageInCache (backgroundImage_);
setOpaque (! backgroundImage_->hasAlphaChannel());
show (title,