summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXDialog.c
diff options
context:
space:
mode:
authorKevin Walzer <kw@codebykevin.com>2018-11-08 04:06:42 (GMT)
committerKevin Walzer <kw@codebykevin.com>2018-11-08 04:06:42 (GMT)
commit3391cf4be8163d08bf29e7ef2adc64bdbb030b22 (patch)
tree95b16e0ec6d8d9c56aa1c2d3ffbac28b993d3a96 /macosx/tkMacOSXDialog.c
parent2aea1a3243ce72f485476b47d501a76bc8eb03a8 (diff)
downloadtk-3391cf4be8163d08bf29e7ef2adc64bdbb030b22.zip
tk-3391cf4be8163d08bf29e7ef2adc64bdbb030b22.tar.gz
tk-3391cf4be8163d08bf29e7ef2adc64bdbb030b22.tar.bz2
Tweak title of about dialog
Diffstat (limited to 'macosx/tkMacOSXDialog.c')
-rw-r--r--macosx/tkMacOSXDialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/tkMacOSXDialog.c b/macosx/tkMacOSXDialog.c
index d790b2e..f79cad0 100644
--- a/macosx/tkMacOSXDialog.c
+++ b/macosx/tkMacOSXDialog.c
@@ -1205,7 +1205,7 @@ TkAboutDlg(void)
NSString *contributors = @" Tcl Core Team and Contributors";
NSString *credits = [NSString stringWithFormat:@"%@%@%@", copyright, year, contributors];
NSAlert *about = [[NSAlert alloc] init];
- [[about window] setTitle:@"About Tcl/Tk"];
+ [[about window] setTitle:@"About Tcl & Tk"];
[about setMessageText: version];
[about setInformativeText:credits];
[about addButtonWithTitle:@"OK"];