summaryrefslogtreecommitdiffstats
path: root/win/stubs.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-09-24 21:01:04 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-09-24 21:01:04 (GMT)
commitc2eaef98e73b309df7c2e262fc0c982a634d0f9d (patch)
tree358e45d71a9f62548cc8770fb3f2bb2a6bf30b81 /win/stubs.c
parentc1d2b9d95856fe913236eec23533b0bd522726d3 (diff)
downloadtk-c2eaef98e73b309df7c2e262fc0c982a634d0f9d.zip
tk-c2eaef98e73b309df7c2e262fc0c982a634d0f9d.tar.gz
tk-c2eaef98e73b309df7c2e262fc0c982a634d0f9d.tar.bz2
Add 7 X11 functions to the aqua stub table, which makes them accessable to stubbed extensions.
They were defined in tkMacOSXPort.h as macro's, which is not 'right'
Diffstat (limited to 'win/stubs.c')
-rw-r--r--win/stubs.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/win/stubs.c b/win/stubs.c
index 1cf23ef..884186c 100644
--- a/win/stubs.c
+++ b/win/stubs.c
@@ -444,25 +444,25 @@ int
XNoOp(
Display *display)
{
- display->request++;
+ display->request++;
return 0;
}
XAfterFunction
XSynchronize(
Display *display,
- Bool bool)
+ Bool onoff)
{
- display->request++;
+ display->request++;
return NULL;
}
int
XSync(
Display *display,
- Bool bool)
+ Bool discard)
{
- display->request++;
+ display->request++;
return 0;
}