diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/oc/bug_340.m')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/oc/bug_340.m | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/oc/bug_340.m b/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/oc/bug_340.m new file mode 100644 index 00000000..ea9f8201 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/oc/bug_340.m @@ -0,0 +1,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 |