mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 06:00:44 +00:00
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:
parent
049184d253
commit
d3489bacaa
3 changed files with 9 additions and 4 deletions
|
@ -357,7 +357,7 @@
|
|||
};
|
||||
|
||||
NSImageView = {
|
||||
Super = NScontrol;
|
||||
Super = NSControl;
|
||||
};
|
||||
|
||||
NSMatrix = {
|
||||
|
|
|
@ -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];
|
||||
|
|
|
@ -575,6 +575,11 @@ static NSMapTable *docMap = 0;
|
|||
return path;
|
||||
}
|
||||
|
||||
- (NSImage *) normalImage
|
||||
{
|
||||
return image;
|
||||
}
|
||||
|
||||
- (NSImage *) image
|
||||
{
|
||||
return smallImage;
|
||||
|
|
Loading…
Reference in a new issue