mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-25 02:04:23 +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:
parent
4ed1d791e5
commit
c22c06c80c
126 changed files with 1454 additions and 1838 deletions
|
|
@ -243,7 +243,7 @@ Component* FileListComponent::refreshComponentForRow (int row, bool isSelected,
|
|||
if (comp == 0)
|
||||
{
|
||||
delete existingComponentToUpdate;
|
||||
existingComponentToUpdate = comp = new FileListItemComponent (*this, fileList.getTimeSliceThread());
|
||||
comp = new FileListItemComponent (*this, fileList.getTimeSliceThread());
|
||||
}
|
||||
|
||||
DirectoryContentsList::FileInfo fileInfo;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue