diff options
author | nijtmans <nijtmans> | 2010-12-13 15:25:35 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-12-13 15:25:35 (GMT) |
commit | 1163db68f3c029d63c522ada68ab47396fe37aba (patch) | |
tree | a3ca5553dbbf22b09cb625e81ff3027b1a54610d /generic/tkMain.c | |
parent | d2674e76cf933113aa9181c43646b4fcc0313f42 (diff) | |
download | tk-1163db68f3c029d63c522ada68ab47396fe37aba.zip tk-1163db68f3c029d63c522ada68ab47396fe37aba.tar.gz tk-1163db68f3c029d63c522ada68ab47396fe37aba.tar.bz2 |
Change "Application initialization failed" to "application-specific initialization failed", for consistency with Tcl.
Diffstat (limited to 'generic/tkMain.c')
-rw-r--r-- | generic/tkMain.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkMain.c b/generic/tkMain.c index d6b92da..740e07b 100644 --- a/generic/tkMain.c +++ b/generic/tkMain.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMain.c,v 1.38 2010/11/24 11:14:15 nijtmans Exp $ + * RCS: @(#) $Id: tkMain.c,v 1.39 2010/12/13 15:25:36 nijtmans Exp $ */ /** @@ -304,7 +304,7 @@ Tk_MainEx( if (appInitProc(interp) != TCL_OK) { TkpDisplayWarning(Tcl_GetStringResult(interp), - "Application initialization failed"); + "application-specific initialization failed"); } /* |