diff options
Diffstat (limited to 'qobject/qlist.c')
-rw-r--r-- | qobject/qlist.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/qobject/qlist.c b/qobject/qlist.c index 60562a1..356ad94 100644 --- a/qobject/qlist.c +++ b/qobject/qlist.c @@ -182,3 +182,8 @@ void qlist_destroy_obj(QObject *obj) g_free(qlist); } + +void qlist_unref(QList *q) +{ + qobject_unref(q); +} |