summaryrefslogtreecommitdiffstats
path: root/objects/pyscript-object.h
diff options
context:
space:
mode:
Diffstat (limited to 'objects/pyscript-object.h')
-rw-r--r--objects/pyscript-object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/objects/pyscript-object.h b/objects/pyscript-object.h
index ee32d8c..8565053 100644
--- a/objects/pyscript-object.h
+++ b/objects/pyscript-object.h
@@ -3,13 +3,13 @@
#include <Python.h>
#include <glib.h>
-//FIXME: add list of registered dynamic signal names
typedef struct {
PyObject_HEAD
PyObject *module; /* module object */
PyObject *argv; /* list of argument strings from the load command */
PyObject *modules; /* dict of imported modules for script */
GSList *signals; /* list of bound signals and commands */
+ GSList *registered_signals; /* list of signal names registered */
} PyScript;
extern PyTypeObject PyScriptType;