Smarter actual fix for Sparkle
parent
7af4e94b03
commit
6f8dc14ce1
|
@ -199,11 +199,9 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// XXX
|
|
||||||
#pragma GCC diagnostic ignored "-Wformat-security"
|
|
||||||
- (void)abortUpdateWithError:(NSError *)error
|
- (void)abortUpdateWithError:(NSError *)error
|
||||||
{
|
{
|
||||||
NSAlert *alert = [NSAlert alertWithMessageText:SULocalizedString(@"Update Error!", nil) defaultButton:SULocalizedString(@"Cancel Update", nil) alternateButton:nil otherButton:nil informativeTextWithFormat:[error localizedDescription]];
|
NSAlert *alert = [NSAlert alertWithMessageText:SULocalizedString(@"Update Error!", nil) defaultButton:SULocalizedString(@"Cancel Update", nil) alternateButton:nil otherButton:nil informativeTextWithFormat:@"%@", [error localizedDescription]];
|
||||||
[self showModalAlert:alert];
|
[self showModalAlert:alert];
|
||||||
[super abortUpdateWithError:error];
|
[super abortUpdateWithError:error];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue