mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
bug 391284 - crash reporter doesn't work for Thunderbird on Mac OS X. r=campd
This commit is contained in:
parent
7efdf9125f
commit
d7f71e8c8e
@ -483,6 +483,13 @@ bool UIGetSettingsPath(const string& vendor,
|
||||
// all application preferences directories live alongside one another in
|
||||
// ~/Library/Application Support/
|
||||
destPath = [destPath stringByAppendingPathComponent: NSSTR(product)];
|
||||
// Thunderbird stores its profile in ~/Library/Thunderbird,
|
||||
// but we're going to put stuff in ~/Library/Application Support/Thunderbird
|
||||
// anyway, so we have to ensure that path exists.
|
||||
string tempPath = [destPath UTF8String];
|
||||
if (!UIEnsurePathExists(tempPath))
|
||||
return false;
|
||||
|
||||
destPath = [destPath stringByAppendingPathComponent: @"Crash Reports"];
|
||||
|
||||
settingsPath = [destPath UTF8String];
|
||||
|
Loading…
Reference in New Issue
Block a user