Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/browser/_sugarbrowsermodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'sugar/browser/_sugarbrowsermodule.c')
-rw-r--r--sugar/browser/_sugarbrowsermodule.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/sugar/browser/_sugarbrowsermodule.c b/sugar/browser/_sugarbrowsermodule.c
deleted file mode 100644
index 653bbfa..0000000
--- a/sugar/browser/_sugarbrowsermodule.c
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include "xulrunner.h"
-
-/* include this first, before NO_IMPORT_PYGOBJECT is defined */
-#include <pygobject.h>
-
-void py_sugarbrowser_register_classes (PyObject *d);
-
-extern PyMethodDef py_sugarbrowser_functions[];
-
-DL_EXPORT(void)
-init_sugarbrowser(void)
-{
- PyObject *m, *d;
-
- xulrunner_startup();
-
- init_pygobject ();
-
- m = Py_InitModule ("_sugarbrowser", py_sugarbrowser_functions);
- d = PyModule_GetDict (m);
-
- py_sugarbrowser_register_classes (d);
- py_sugarbrowser_add_constants(m, "GTK_MOZ_EMBED_");
-
- if (PyErr_Occurred ()) {
- Py_FatalError ("can't initialise module _sugarbrowser");
- }
-}