diff --git a/macosx/English.lproj/InfoWindow.nib/classes.nib b/macosx/English.lproj/InfoWindow.nib/classes.nib index baa630998..7e91aabef 100644 --- a/macosx/English.lproj/InfoWindow.nib/classes.nib +++ b/macosx/English.lproj/InfoWindow.nib/classes.nib @@ -9,7 +9,6 @@ revealFile = id; revealTorrentFile = id; setCheck = id; - setLimitSetting = id; setOnlySelectedCheck = id; setPex = id; setPiecesView = id; @@ -17,6 +16,7 @@ setRatioLimit = id; setRatioSetting = id; setSpeedLimit = id; + setSpeedMode = id; }; CLASS = InfoWindowController; LANGUAGE = ObjC; @@ -38,7 +38,7 @@ fDownloadingFromField = NSTextField; fErrorMessageView = NSTextView; fFileCheckItem = NSMenuItem; - fFileOutline = NSOutlineView; + fFileOutline = FileOutlineView; fFilePriorityHigh = NSMenuItem; fFilePriorityLow = NSMenuItem; fFilePriorityNormal = NSMenuItem; diff --git a/macosx/English.lproj/InfoWindow.nib/keyedobjects.nib b/macosx/English.lproj/InfoWindow.nib/keyedobjects.nib index a26628bb8..2365e114a 100644 Binary files a/macosx/English.lproj/InfoWindow.nib/keyedobjects.nib and b/macosx/English.lproj/InfoWindow.nib/keyedobjects.nib differ diff --git a/macosx/InfoWindowController.h b/macosx/InfoWindowController.h index 0716c2a74..5e15e8b57 100644 --- a/macosx/InfoWindowController.h +++ b/macosx/InfoWindowController.h @@ -87,7 +87,7 @@ - (void) setOnlySelectedCheck: (id) sender; - (void) setPriority: (id) sender; -- (void) setLimitSetting: (id) sender; +- (void) setSpeedMode: (id) sender; - (void) setSpeedLimit: (id) sender; - (void) setRatioSetting: (id) sender; diff --git a/macosx/InfoWindowController.m b/macosx/InfoWindowController.m index 6badf3b73..82158ea69 100644 --- a/macosx/InfoWindowController.m +++ b/macosx/InfoWindowController.m @@ -1095,8 +1095,7 @@ [fFileOutline reloadData]; } -#warning rename to mode -- (void) setLimitSetting: (id) sender +- (void) setSpeedMode: (id) sender { BOOL upload = sender == fUploadLimitPopUp; int index = [sender indexOfSelectedItem], mode;