summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/dlg
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-12-14 23:03:07 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2001-12-14 23:03:07 (GMT)
commit9635f33e5b64495cc1ba18307f0b91a303e7e103 (patch)
treee78f99a71336ab7d3a31d00252a8635ed6082011 /Mac/Modules/dlg
parent1b8bd94f73d5da6e79b4a44c110a5ad6f9207086 (diff)
downloadcpython-9635f33e5b64495cc1ba18307f0b91a303e7e103.zip
cpython-9635f33e5b64495cc1ba18307f0b91a303e7e103.tar.gz
cpython-9635f33e5b64495cc1ba18307f0b91a303e7e103.tar.bz2
Quick patch to allow building with Universal Headers 3.4.
Diffstat (limited to 'Mac/Modules/dlg')
-rw-r--r--Mac/Modules/dlg/_Dlgmodule.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/Mac/Modules/dlg/_Dlgmodule.c b/Mac/Modules/dlg/_Dlgmodule.c
index 8a0dd4f..d21f46c 100644
--- a/Mac/Modules/dlg/_Dlgmodule.c
+++ b/Mac/Modules/dlg/_Dlgmodule.c
@@ -876,23 +876,6 @@ static PyObject *DlgObj_GetDialogPort(DialogObject *_self, PyObject *_args)
return _res;
}
-#if !TARGET_API_MAC_CARBON
-
-static PyObject *DlgObj_SetGrafPortOfDialog(DialogObject *_self, PyObject *_args)
-{
- PyObject *_res = NULL;
-#ifndef SetGrafPortOfDialog
- PyMac_PRECHECK(SetGrafPortOfDialog);
-#endif
- if (!PyArg_ParseTuple(_args, ""))
- return NULL;
- SetGrafPortOfDialog(_self->ob_itself);
- Py_INCREF(Py_None);
- _res = Py_None;
- return _res;
-}
-#endif
-
static PyMethodDef DlgObj_methods[] = {
{"DrawDialog", (PyCFunction)DlgObj_DrawDialog, 1,
"() -> None"},
@@ -975,10 +958,6 @@ static PyMethodDef DlgObj_methods[] = {
{"GetDialogPort", (PyCFunction)DlgObj_GetDialogPort, 1,
"() -> (CGrafPtr _rv)"},
-#if !TARGET_API_MAC_CARBON
- {"SetGrafPortOfDialog", (PyCFunction)DlgObj_SetGrafPortOfDialog, 1,
- "() -> None"},
-#endif
{NULL, NULL, 0}
};