From: Felix Paul Kühne Date: Fri, 7 Oct 2005 09:58:04 +0000 (+0000) Subject: * don't use 'ps' as suffix but 'mpg' like most other apps do. 'ps' can be confused... X-Git-Tag: 0.8.4~317 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=d96df4ca4faea4872d37dd147643464082634b01;hp=8eac36507c4ace6cead2c54349f0bc4e6cf09ddd;p=vlc * don't use 'ps' as suffix but 'mpg' like most other apps do. 'ps' can be confused with PostScript files on the Mac. In fact, the Finder tries to open our ps-files with Preview by default. --- diff --git a/modules/gui/macosx/wizard.m b/modules/gui/macosx/wizard.m index b49e3ea0a4..b12fd74340 100644 --- a/modules/gui/macosx/wizard.m +++ b/modules/gui/macosx/wizard.m @@ -230,11 +230,11 @@ static VLCWizard *_o_sharedInstance = nil; NSArray * o_mov; NSArray * o_wav; NSArray * o_asfh; - o_ps = [NSArray arrayWithObjects: @"ps", @"MPEG PS", \ + o_ps = [NSArray arrayWithObjects: @"mpg", @"MPEG PS", \ _NS("MPEG Program Stream"), nil]; o_ts = [NSArray arrayWithObjects: @"ts", @"MPEG TS", \ _NS("MPEG Transport Stream"), nil]; - o_mpeg = [NSArray arrayWithObjects: @"ps", @"MPEG 1", \ + o_mpeg = [NSArray arrayWithObjects: @"mpg", @"MPEG 1", \ _NS("MPEG 1 Format"), nil]; o_ogg = [NSArray arrayWithObjects: @"ogg", @"OGG", @"OGG", nil]; o_raw = [NSArray arrayWithObjects: @"raw", @"RAW", @"RAW", nil];