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)
commit1cf81b9381fe205f73b2ee251926d11c881fd036 (patch)
tree4c1e8a910b0e17017be05ce9620a148d46c10383 /mac
parent35b646623ed0df2399d53ebd45eaaee4c5f21c82 (diff)
downloadtk-1cf81b9381fe205f73b2ee251926d11c881fd036.zip
tk-1cf81b9381fe205f73b2ee251926d11c881fd036.tar.gz
tk-1cf81b9381fe205f73b2ee251926d11c881fd036.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;
+}