summaryrefslogtreecommitdiffstats
path: root/mac/tkMacKeyboard.c
diff options
context:
space:
mode:
authorwolfsuit <wolfsuit>2002-02-05 02:25:13 (GMT)
committerwolfsuit <wolfsuit>2002-02-05 02:25:13 (GMT)
commitbcdb604e358027dd76ac168778b14546a8019d8a (patch)
tree32f54ef11288f0dd53eb468b143ef224897cdefc /mac/tkMacKeyboard.c
parentefc846c18b6df17d9dfd3b527214ec413d5f175f (diff)
downloadtk-bcdb604e358027dd76ac168778b14546a8019d8a.zip
tk-bcdb604e358027dd76ac168778b14546a8019d8a.tar.gz
tk-bcdb604e358027dd76ac168778b14546a8019d8a.tar.bz2
Merge with current TOT
Added support for the wm stackorder command Fixed crash when selecting Menu items in the Application menu that we didn't put there. Added first bits of the use of CG for low-level drawing. The line-drawing works, the rest doesn't yet. You have to set the file static useCGDrawing to 1 and rebuild to activate this code.
Diffstat (limited to 'mac/tkMacKeyboard.c')
-rw-r--r--mac/tkMacKeyboard.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/mac/tkMacKeyboard.c b/mac/tkMacKeyboard.c
index 9039625..8c1bcc7 100644
--- a/mac/tkMacKeyboard.c
+++ b/mac/tkMacKeyboard.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkMacKeyboard.c,v 1.6 2000/04/17 02:16:58 jingham Exp $
+ * RCS: @(#) $Id: tkMacKeyboard.c,v 1.6.8.1 2002/02/05 02:25:16 wolfsuit Exp $
*/
#include "tkInt.h"
@@ -247,7 +247,8 @@ TkpGetString(
len = 0;
}
}
- return Tcl_ExternalToUtfDString(NULL, string, len, dsPtr);
+ Tcl_ExternalToUtfDString(NULL, string, len, dsPtr);
+ return Tcl_DStringValue(dsPtr);
}
/*