Skip to content

Commit 27c515d

Browse files
authored
Fix alert button text from 'Ok' to 'OK' (#379)
For consistency, use "OK" everywhere
1 parent 4af196f commit 27c515d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Source/GSPrinting.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ + (NSBundle*) printingBundle
153153

154154
NSRunAlertPanel(@"GNUstep Printing Backend System",
155155
@"Could not open any working printing bundle. Printing will not work.",
156-
@"Ok", NULL, NULL);
156+
@"OK", NULL, NULL);
157157

158158
return nil;
159159
}
@@ -180,7 +180,7 @@ + (NSBundle*) printingBundle
180180
@"Could not load any working printing bundle");
181181
NSRunAlertPanel(@"GNUstep Printing Backend System",
182182
@"Could not open any working printing bundle. Printing will not work.",
183-
@"Ok", NULL, NULL);
183+
@"OK", NULL, NULL);
184184
return nil;
185185
}
186186
else
@@ -192,7 +192,7 @@ + (NSBundle*) printingBundle
192192
defaultBundleName, [[bundle bundlePath] lastPathComponent]];
193193

194194
NSRunAlertPanel(@"GNUstep Printing Backend System",
195-
msg, @"Ok", NULL, NULL);
195+
msg, @"OK", NULL, NULL);
196196
}
197197
}
198198
}

0 commit comments

Comments
 (0)