From 13ed0a690a5049a4c183e67ce1d7de2eec805232 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Rivaille Date: Sun, 16 Dec 2001 23:31:17 +0000 Subject: [PATCH] [NSProgressIndicator +initialize]: retain the fillColour git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@11779 72102866-910b-0410-8b05-ffd578937521 --- Source/NSProgressIndicator.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/NSProgressIndicator.m b/Source/NSProgressIndicator.m index d21752777..d27c55f93 100644 --- a/Source/NSProgressIndicator.m +++ b/Source/NSProgressIndicator.m @@ -40,7 +40,7 @@ NSImage *images[maxCount]; { [self setVersion: 1]; // FIXME: Should come from defaults and should be reset when defaults change - fillColour = [NSColor blueColor]; + fillColour = RETAIN([NSColor blueColor]); // FIXME: Load the images and set maxCount } }