summaryrefslogtreecommitdiffstats
path: root/mac
diff options
context:
space:
mode:
authorhobbs <hobbs>2002-04-05 08:37:52 (GMT)
committerhobbs <hobbs>2002-04-05 08:37:52 (GMT)
commit3691ab0624af5eaa6e84b73e28c912de5fd4bf0d (patch)
tree4c1e8a910b0e17017be05ce9620a148d46c10383 /mac
parentd51e2b6c066e75b26bd56eb092a9cf0ba8bd7e73 (diff)
downloadtk-3691ab0624af5eaa6e84b73e28c912de5fd4bf0d.zip
tk-3691ab0624af5eaa6e84b73e28c912de5fd4bf0d.tar.gz
tk-3691ab0624af5eaa6e84b73e28c912de5fd4bf0d.tar.bz2
added Tk_SetCaretPos stub (does nothing)
Diffstat (limited to 'mac')
-rw-r--r--mac/tkMacXStubs.c19
1 files changed, 18 insertions, 1 deletions
diff --git a/mac/tkMacXStubs.c b/mac/tkMacXStubs.c
index 8661392..26fe5ec 100644
--- a/mac/tkMacXStubs.c
+++ b/mac/tkMacXStubs.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkMacXStubs.c,v 1.11 2002/01/25 21:09:37 dgp Exp $
+ * RCS: @(#) $Id: tkMacXStubs.c,v 1.12 2002/04/05 08:37:52 hobbs Exp $
*/
#include "tkInt.h"
@@ -803,3 +803,20 @@ TkGetDefaultScreenName(
}
return screenName;
}
+
+/*
+ *----------------------------------------------------------------------
+ *
+ * Tk_SetCaretPos --
+ *
+ * This indicates the cursor position to Tk. This is not used
+ * on the Mac currently.
+ *
+ *----------------------------------------------------------------------
+ */
+
+void
+Tk_SetCaretPos(Tk_Window tkwin, int x, int y, int height)
+{
+ return;
+}