Changeset 4981
- Timestamp:
- 10/19/07 13:55:43 (9 months ago)
- Files:
-
- Footagehead/trunk/FHWindowController.m (modified) (3 diffs)
- Footagehead/trunk/Footagehead.xcodeproj/project.pbxproj (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Footagehead/trunk/FHWindowController.m
r4906 r4981 35 35 #import "FHWindowController.h" 36 36 37 #define FHClamp(x, min, max) (((x) > (max)) ? (max) : (((x) < (min)) ? (min) : (x))) 38 39 37 40 @implementation FHWindowController 38 41 … … 450 453 newIndex = 0; 451 454 step = (double) count / 10.0; 452 step = WI_CLAMP(step, 2, 10);455 step = FHClamp(step, 2, 10); 453 456 454 457 if([FHSettings intForKey:FHSpreadMode] != FHSpreadNone && step % 2 != 0) … … 489 492 newIndex = count - 1; 490 493 step = (double) count / 10.0; 491 step = WI_CLAMP(step, 2, 10);494 step = FHClamp(step, 2, 10); 492 495 493 496 if([FHSettings intForKey:FHSpreadMode] != FHSpreadNone && step % 2 != 0) Footagehead/trunk/Footagehead.xcodeproj/project.pbxproj
r4907 r4981 174 174 175 175 /* Begin PBXContainerItemProxy section */ 176 774C3A160CC8D35200716F37 /* PBXContainerItemProxy */ = { 177 isa = PBXContainerItemProxy; 178 containerPortal = 77396B390857A18300058AF5 /* WiredAdditions.xcodeproj */; 179 proxyType = 2; 180 remoteGlobalIDString = 774897900CC8A63200E95A83 /* WiredNetworking.framework */; 181 remoteInfo = "Wired Networking"; 182 }; 176 183 77512CCA0862CB4F002757A8 /* PBXContainerItemProxy */ = { 177 184 isa = PBXContainerItemProxy; … … 641 648 children = ( 642 649 77512CCB0862CB4F002757A8 /* WiredAdditions.framework */, 650 774C3A170CC8D35200716F37 /* WiredNetworking.framework */, 643 651 ); 644 652 name = Products; … … 999 1007 1000 1008 /* Begin PBXReferenceProxy section */ 1009 774C3A170CC8D35200716F37 /* WiredNetworking.framework */ = { 1010 isa = PBXReferenceProxy; 1011 fileType = wrapper.framework; 1012 path = WiredNetworking.framework; 1013 remoteRef = 774C3A160CC8D35200716F37 /* PBXContainerItemProxy */; 1014 sourceTree = BUILT_PRODUCTS_DIR; 1015 }; 1001 1016 77512CCB0862CB4F002757A8 /* WiredAdditions.framework */ = { 1002 1017 isa = PBXReferenceProxy;
