mirror of
https://github.com/arsenetar/dupeguru-cocoa.git
synced 2024-11-14 03:49:01 +00:00
Andrew Senetar
caac8df893
- Remove seperate hscommon submodule, and use the files in the dupeguru submodule - Update package.py and build.py to account for hscommon submodule removal - Fix one more warning in UI code - Update .gitignore to ignore visual studio code folder
43 lines
1.2 KiB
Objective-C
43 lines
1.2 KiB
Objective-C
/*
|
|
Copyright 2017 Virgil Dupras
|
|
|
|
This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
|
|
which should be included with this package. The terms are also available at
|
|
http://www.gnu.org/licenses/gpl-3.0.html
|
|
*/
|
|
|
|
#import "HSErrorReportWindow.h"
|
|
|
|
@implementation HSErrorReportWindow
|
|
|
|
@synthesize contentTextView;
|
|
@synthesize githubUrl;
|
|
|
|
+ (void)showErrorReportWithContent:(NSString *)content githubUrl:(NSString *)githubUrl
|
|
{
|
|
HSErrorReportWindow *report = [[HSErrorReportWindow alloc] initWithContent:content githubUrl:githubUrl];
|
|
[NSApp runModalForWindow:[report window]];
|
|
[report release];
|
|
}
|
|
|
|
- (id)initWithContent:(NSString *)content githubUrl:(NSString *)aGithubUrl
|
|
{
|
|
self = [super initWithWindowNibName:@"ErrorReportWindow"];
|
|
[self window];
|
|
[contentTextView alignLeft:nil];
|
|
[[[contentTextView textStorage] mutableString] setString:content];
|
|
self.githubUrl = aGithubUrl;
|
|
return self;
|
|
}
|
|
|
|
- (IBAction)goToGithub:(id)sender
|
|
{
|
|
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:self.githubUrl]];
|
|
}
|
|
|
|
- (IBAction)close:(id)sender
|
|
{
|
|
[[self window] orderOut:self];
|
|
[NSApp stopModalWithCode:NSModalResponseOK];
|
|
}
|
|
@end |