]> granicus.if.org Git - python/commitdiff
Quick patch to allow building with Universal Headers 3.4.
authorJack Jansen <jack.jansen@cwi.nl>
Fri, 14 Dec 2001 23:03:07 +0000 (23:03 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Fri, 14 Dec 2001 23:03:07 +0000 (23:03 +0000)
Mac/Modules/dlg/_Dlgmodule.c
Mac/Modules/mlte/_Mltemodule.c

index 8a0dd4fb0c32326cd7a2cfb26ec20f69a907e673..d21f46c7fe2d74c26ae99fc3e63fa4d0b78aafe6 100644 (file)
@@ -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}
 };
 
index c0819d29e3a93bf723bf8e473777d961f60fb3df..a72ea0e5ca21cb36b71d8651fbdd1b4bd83d446c 100644 (file)
@@ -241,7 +241,7 @@ static PyObject *TXNObj_TXNClick(TXNObjectObject *_self, PyObject *_args)
        return _res;
 }
 
-#if !TARGET_API_MAC_OSX
+#if 0
 
 static PyObject *TXNObj_TXNTSMCheck(TXNObjectObject *_self, PyObject *_args)
 {
@@ -1043,7 +1043,7 @@ static PyMethodDef TXNObj_methods[] = {
        {"TXNClick", (PyCFunction)TXNObj_TXNClick, 1,
         "(EventRecord iEvent) -> None"},
 
-#if !TARGET_API_MAC_OSX
+#if 0
        {"TXNTSMCheck", (PyCFunction)TXNObj_TXNTSMCheck, 1,
         "(EventRecord iEvent) -> (Boolean _rv)"},
 #endif