KingsleyYau / google-breakpad

Automatically exported from code.google.com/p/google-breakpad
0 stars 0 forks source link

Wrong nib specified in crash_report_sender-Info.plist #637

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
This is a harmless problem, but confusing.

In the file src/client/mac/sender/crash_report_sender-Info.plist the 
NSMainNibFile is specified as "MainMenu" when it should be "Breakpad", 
referring to Breakpad.nib. I believe the crash reporter works despite this 
error because NSApplicationMain() has a fallback to find the first nib in the 
app when the specified nib doesn't exist.

The fix is to simply substitute this line:
    <string>MainMenu</string>
with this one:
    <string>Breakpad</string>

Original issue reported on code.google.com by cjdo...@gmail.com on 13 Feb 2015 at 11:48