Skip to content

Commit f03ea7a

Browse files
committed
• Added some comments
1 parent 8a9b341 commit f03ea7a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

SSYAlert.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -520,16 +520,16 @@ + (NSButton*)makeButton {
520520
+ (NSUInteger)recoveryOptionIndexForRecoveryOption:(NSInteger)recoveryOption {
521521
NSUInteger recoveryOptionIndex ;
522522
switch (recoveryOption) {
523-
case NSAlertFirstButtonReturn :
523+
case NSAlertFirstButtonReturn : // 1000
524524
recoveryOptionIndex = 0 ;
525525
break;
526526
case NSAlertSecondButtonReturn :
527-
recoveryOptionIndex = 1 ;
527+
recoveryOptionIndex = 1 ; // 1001
528528
break;
529-
case NSAlertThirdButtonReturn :
529+
case NSAlertThirdButtonReturn : // 1002
530530
recoveryOptionIndex = 2 ;
531531
break;
532-
case SSYAlertFourthButtonReturn :
532+
case SSYAlertFourthButtonReturn : // 1003
533533
recoveryOptionIndex = 3 ;
534534
break;
535535
default:

0 commit comments

Comments
 (0)