Remove _icon to fix link error

This commit is contained in:
Gregory John Casamento 2022-04-25 16:38:00 -04:00
parent b2af7ab062
commit b6b4975aae

View file

@ -39,11 +39,12 @@
- (void) setIcon: (NSImage*)icon
{
ASSIGN(_icon, icon);
// ASSIGN(_icon, icon);
}
- (NSImage*) icon
{
/*
if (_icon == nil && [self filename])
{
return [[NSWorkspace sharedWorkspace] iconForFile: [self filename]];
@ -52,6 +53,8 @@
{
return (NSImage *)_icon;
}
*/
return nil;
}
@end