mirror of
https://github.com/transmission/transmission
synced 2024-12-26 01:27:28 +00:00
390b3e0466
Category for NSString instead of using Utils Speed string in NSString additions
20 lines
363 B
Objective-C
20 lines
363 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
#import <transmission.h>
|
|
|
|
@class Controller;
|
|
|
|
@interface TorrentTableView : NSTableView
|
|
|
|
{
|
|
IBOutlet Controller * fController;
|
|
|
|
tr_stat_t * fStat;
|
|
NSPoint fClickPoint;
|
|
|
|
IBOutlet NSMenu * fContextRow;
|
|
IBOutlet NSMenu * fContextNoRow;
|
|
}
|
|
|
|
- (void) updateUI: (tr_stat_t *) stat;
|
|
|
|
@end
|