diff options
Diffstat (limited to 'plugins/pychrysalide/analysis/db/items/comment.c')
| -rw-r--r-- | plugins/pychrysalide/analysis/db/items/comment.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/plugins/pychrysalide/analysis/db/items/comment.c b/plugins/pychrysalide/analysis/db/items/comment.c index 78d4902..1358f1d 100644 --- a/plugins/pychrysalide/analysis/db/items/comment.c +++ b/plugins/pychrysalide/analysis/db/items/comment.c @@ -117,7 +117,7 @@ static PyObject *py_db_comment_new(PyTypeObject *type, PyObject *args, PyObject      if (first_time)      { -        status = register_class_for_dynamic_pygobject(gtype, type, base); +        status = register_class_for_dynamic_pygobject(gtype, type);          if (!status)          { @@ -464,7 +464,7 @@ bool ensure_python_db_comment_is_registered(void)          if (!ensure_python_db_item_is_registered())              return false; -        if (!register_class_for_pygobject(dict, G_TYPE_DB_COMMENT, type, get_python_db_item_type())) +        if (!register_class_for_pygobject(dict, G_TYPE_DB_COMMENT, type))              return false;          if (!define_db_comment_constants(type)) @@ -574,7 +574,7 @@ static PyObject *py_comment_collection_new(PyTypeObject *type, PyObject *args, P      if (first_time)      { -        status = register_class_for_dynamic_pygobject(gtype, type, base); +        status = register_class_for_dynamic_pygobject(gtype, type);          if (!status)          { @@ -671,7 +671,7 @@ bool ensure_python_comment_collection_is_registered(void)          if (!ensure_python_db_collection_is_registered())              return false; -        if (!register_class_for_pygobject(dict, G_TYPE_COMMENT_COLLECTION, type, get_python_db_collection_type())) +        if (!register_class_for_pygobject(dict, G_TYPE_COMMENT_COLLECTION, type))              return false;      } | 
