mirror of
				https://github.com/arsenetar/dupeguru.git
				synced 2025-09-11 17:58:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			307 B
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			307 B
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
| #import "DetailsPanel.h"
 | |
| 
 | |
| @implementation DetailsPanelBase
 | |
| - (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
 |