Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/hulahop.override
blob: bdc07298e6e41aefaaad5c360d5181d7a245c926 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* -*- Mode: C; c-basic-offset: 4 -*- */
%%
headers
#include <Python.h>
#include <pygtk/pygtk.h>

#include "hulahop-browser.h"

%%
modulename _hulahop
%%
import gtk.Bin as PyGtkBin_Type
%%
ignore-glob
  *_get_type
  _*
%%
override hulahop_browser_get_browser noargs
static PyObject *
_wrap_hulahop_browser_get_browser(PyGObject *self)
{
    return hulahop_browser_get_browser(HULAHOP_BROWSER(self->obj));
}
%%