summaryrefslogtreecommitdiff
path: root/otk_c/init.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-12-21 13:49:57 +0000
committerDana Jansens <danakj@orodu.net>2002-12-21 13:49:57 +0000
commit55b2aaf973063796a668bc758232141c3d6f5cc9 (patch)
tree5d61fe0ac903b5130ec85997296befab7909bdf9 /otk_c/init.c
parent16e1192e4d18cd0d32b1ab8bf38ac8d69347229d (diff)
add font
Diffstat (limited to 'otk_c/init.c')
-rw-r--r--otk_c/init.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/otk_c/init.c b/otk_c/init.c
index 5f576ac3..a958c4fe 100644
--- a/otk_c/init.c
+++ b/otk_c/init.c
@@ -5,6 +5,7 @@
#include "screeninfo.h"
#include "color.h"
#include "gccache.h"
+#include "font.h"
#include <X11/Xlib.h>
#include <Python.h>
@@ -21,10 +22,12 @@ void initotk(char *display)
OtkDisplay_Type.ob_type = &PyType_Type;
OtkScreenInfo_Type.ob_type = &PyType_Type;
OtkColor_Type.ob_type = &PyType_Type;
+ OtkFont_Type.ob_type = &PyType_Type;
Py_InitModule("otk", otk_methods);
OtkDisplay_Initialize(display);
assert(OBDisplay);
OtkGCCache_Initialize();
+ OtkFont_Initialize();
}