corrected minor compilation error

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@17268 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2003-07-20 22:00:34 +00:00
parent 049184d253
commit d3489bacaa
3 changed files with 9 additions and 4 deletions

View file

@ -357,7 +357,7 @@
};
NSImageView = {
Super = NScontrol;
Super = NSControl;
};
NSMatrix = {

View file

@ -2804,10 +2804,10 @@ static NSImage *classesImage = nil;
NSString *soundPath;
BOOL copied = NO;
if(![object isEqualToString: imagePath])
soundPath = [documentPath stringByAppendingPathComponent:
[object lastPathComponent]];
if(![object isEqualToString: soundPath])
{
soundPath = [documentPath stringByAppendingPathComponent:
[object lastPathComponent]];
copied = [mgr copyPath: object
toPath: soundPath
handler: nil];

View file

@ -575,6 +575,11 @@ static NSMapTable *docMap = 0;
return path;
}
- (NSImage *) normalImage
{
return image;
}
- (NSImage *) image
{
return smallImage;