Changeset 12070
- Timestamp:
- Mar 3, 2011, 3:53:30 AM (11 years ago)
- Location:
- branches/2.2x/macosx
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2x/macosx/BadgeView.h
r11617 r12070 36 36 } 37 37 38 - (id) initWith Frame: (NSRect) frame lib: (tr_session *) lib;38 - (id) initWithLib: (tr_session *) lib; 39 39 40 40 - (BOOL) setRatesWithDownload: (CGFloat) downloadRate upload: (CGFloat) uploadRate; -
branches/2.2x/macosx/BadgeView.m
r11617 r12070 36 36 @implementation BadgeView 37 37 38 - (id) initWith Frame: (NSRect) frame lib: (tr_session *) lib38 - (id) initWithLib: (tr_session *) lib 39 39 { 40 if ((self = [super init WithFrame: frame]))40 if ((self = [super init])) 41 41 { 42 42 fLib = lib; -
branches/2.2x/macosx/Badger.m
r11759 r12070 36 36 fCompleted = 0; 37 37 38 BadgeView * view = [[BadgeView alloc] initWith Frame: [[[NSApp dockTile] contentView] frame] lib: lib];38 BadgeView * view = [[BadgeView alloc] initWithLib: lib]; 39 39 [[NSApp dockTile] setContentView: view]; 40 40 [view release];
Note: See TracChangeset
for help on using the changeset viewer.