mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-05 07:49:02 +00:00
17 lines
303 B
Mathematica
17 lines
303 B
Mathematica
|
#import "DetailsPanel.h"
|
||
|
|
||
|
@implementation DetailsPanel
|
||
|
- (id)initWithPy:(PyApp *)aPy
|
||
|
{
|
||
|
self = [super initWithWindowNibName:@"Details"];
|
||
|
[self window]; //So the detailsTable is initialized.
|
||
|
[detailsTable setPy:aPy];
|
||
|
return self;
|
||
|
}
|
||
|
|
||
|
- (void)refresh
|
||
|
{
|
||
|
[detailsTable reloadData];
|
||
|
}
|
||
|
@end
|