Commit 11296713 authored by Jack Jansen's avatar Jack Jansen

Fixed changed UPP routines names. The module now compiles and loads.

parent cf992253
...@@ -32,7 +32,11 @@ PERFORMANCE OF THIS SOFTWARE. ...@@ -32,7 +32,11 @@ PERFORMANCE OF THIS SOFTWARE.
#include "Python.h" #include "Python.h"
#include "macglue.h" #include "macglue.h"
#include "pymactoolbox.h" #include "pymactoolbox.h"
#ifdef WITHOUT_FRAMEWORKS
#include <Navigation.h> #include <Navigation.h>
#else
#include <Carbon/Carbon.h>
#endif
static PyObject *ErrorObject; static PyObject *ErrorObject;
...@@ -965,9 +969,9 @@ initNav() ...@@ -965,9 +969,9 @@ initNav()
/* XXXX Add constants here */ /* XXXX Add constants here */
/* Set UPPs */ /* Set UPPs */
my_eventProcUPP = NewNavEventProc(my_eventProc); my_eventProcUPP = NewNavEventUPP(my_eventProc);
my_previewProcUPP = NewNavPreviewProc(my_previewProc); my_previewProcUPP = NewNavPreviewUPP(my_previewProc);
my_filterProcUPP = NewNavObjectFilterProc(my_filterProc); my_filterProcUPP = NewNavObjectFilterUPP(my_filterProc);
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment