Skip to content
Snippets Groups Projects
Commit b889c15c authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

SL-821: Fix BugSplat attachment method override per BugSplat support.

The example code on the BugSplat documentation page
https://www.bugsplat.com/docs/platforms/os-x#configuration
omits certain essential Objective-C++ boilerplate incantations. Adding them
at least compiles successfully.
parent 1d7687ef
No related branches found
No related tags found
No related merge requests found
......@@ -194,7 +194,11 @@
#if defined(LL_BUGSPLAT)
@implementation BugsplatStartupManagerDelegate
// per Geoff at BugSplat support
@interface AppDelegate : NSObject <NSApplicationDelegate, BugsplatStartupManagerDelegate>
@end
@implementation AppDelegate
- (BugsplatAttachment *)attachmentForBugsplatStartupManager:(BugsplatStartupManager *)bugsplatStartupManager {
std::string logfile = getLogFilePathname();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment