Bug 797834: Fix build error on OSX 10.6 in nsMacWebAppUtils; r=dwalkowski

This commit is contained in:
Steven Michaud 2012-10-04 11:30:00 -07:00
Родитель 20add93053
Коммит 45495233e6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -46,7 +46,7 @@ NS_IMETHODIMP nsMacWebAppUtils::LaunchAppWithIdentifier(const nsAString& bundleI
// Note this might return false, meaning the app wasnt launched for some reason.
BOOL success = [[NSWorkspace sharedWorkspace] launchAppWithBundleIdentifier:
[NSString stringWithCharacters:((nsString)bundleIdentifier).get() length:((nsString)bundleIdentifier).Length()]
options: nil
options: (NSWorkspaceLaunchOptions)0
additionalEventParamDescriptor: nil
launchIdentifier: NULL];