summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/input/oc/bug_340.m
blob: ea9f82017ca9ccb6905866be8b1437c2b3cacbca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import <Cocoa/Cocoa.h>

@implementation MyDocument
- (void) locationManager: (CLLocationManager*) manager didFailWithError:(NSError *)error {

  [UIAlertView showError: error
               withTitle: NSLocalizedString(@"Your location cannot be determined",
                               @"The location of the user cannot be guessed")
                 message: NSLocalizedString(@"You can try again by pressing the refresh button",
                             @"Recovery suggestion when the location cannot be found")];
}

@end