]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/coredialogs.m
macosx: CAS: sync steppers and fields, and add NumberFormatters (fixes #8598)
[vlc] / modules / gui / macosx / coredialogs.m
index 1fa8927ec16d01f0c365cdf1f8b444706ef54616..7d24fc63dcb7fd9b3500ecfff67b48017dc52cca 100644 (file)
@@ -317,10 +317,10 @@ static VLCCoreDialogProvider *_o_sharedInstance = nil;
     (NSTableColumn *)theTableColumn row: (NSInteger)row
 {
     if ([[theTableColumn identifier] isEqualToString: @"error_msg"])
-        return [o_errors objectAtIndex: row];
+        return o_errors[row];
 
     if ([[theTableColumn identifier] isEqualToString: @"icon"])
-        return [o_icons objectAtIndex: row];
+        return o_icons[row];
 
     return @"unknown identifier";
 }