]> Dogcows Code - chaz/openbox/commitdiff
dont need the otk initializer
authorDana Jansens <danakj@orodu.net>
Fri, 10 Jan 2003 08:32:35 +0000 (08:32 +0000)
committerDana Jansens <danakj@orodu.net>
Fri, 10 Jan 2003 08:32:35 +0000 (08:32 +0000)
src/python.cc

index 719c667d53871271300b9c134b84a445468cfd84..e995ea116731314a248693597ac78e15ea952d48 100644 (file)
@@ -11,8 +11,6 @@
 extern "C" {
 // The initializer in openbox_wrap.cc
 extern void init_openbox(void);
-// The initializer in otk_wrap.cc
-extern void init_otk(void);
 }
 
 namespace ob {
@@ -24,8 +22,7 @@ void python_init(char *argv0)
   // start the python engine
   Py_SetProgramName(argv0);
   Py_Initialize();
-  // initialize the C python modules
-  init_otk();
+  // initialize the C python module
   init_openbox();
   // include the openbox directories for python scripts in the sys path
   PyRun_SimpleString("import sys");
This page took 0.024063 seconds and 4 git commands to generate.