mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 15:11:37 +00:00
* Source/NSImage.m (+_clearFileTypeCaches): Use DESTROY instead of
RELEASE. Patch by Philippe Roussel <p.o.roussel@free.fr>. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@34492 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
53ac9ad559
commit
e2884bafce
2 changed files with 9 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
|||
2012-01-11 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/NSImage.m (+_clearFileTypeCaches): Use DESTROY instead of RELEASE.
|
||||
Patch by Philippe Roussel <p.o.roussel@free.fr>.
|
||||
|
||||
2012-01-10 Eric Wasylishen <ewasylishen@gmail.com>
|
||||
|
||||
* Source/NSImage.m: Remove duplicate #import
|
||||
|
|
|
@ -1812,10 +1812,10 @@ iterate_reps_for_types(NSArray* imageReps, SEL method)
|
|||
|
||||
+ (void) _clearFileTypeCaches: (NSNotification*)notif
|
||||
{
|
||||
RELEASE(imageUnfilteredFileTypes);
|
||||
RELEASE(imageFileTypes);
|
||||
RELEASE(imageUnfilteredPasteboardTypes);
|
||||
RELEASE(imagePasteboardTypes);
|
||||
DESTROY(imageUnfilteredFileTypes);
|
||||
DESTROY(imageFileTypes);
|
||||
DESTROY(imageUnfilteredPasteboardTypes);
|
||||
DESTROY(imagePasteboardTypes);
|
||||
}
|
||||
|
||||
+ (void) _themeDidActivate: (NSNotification *)notif
|
||||
|
|
Loading…
Reference in a new issue