diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2017-08-13 19:32:21 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2017-08-13 19:32:21 (GMT) |
commit | 436a69781ba7e0cd800da1a4d28b6f275963b751 (patch) | |
tree | 1455c401a84af62aac6e1cca5105380275c1e291 | |
parent | f0ef296d23bcefffcfc292c5d8e6143d700f46fc (diff) |
Fixed a GLib warning at runtime.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/glibext/gbufferview.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,10 @@ 17-08-13 Cyrille Bagard <nocbos@gmail.com> + * src/glibext/gbufferview.c: + Fix a GLib warning at runtime. + +17-08-13 Cyrille Bagard <nocbos@gmail.com> + * pixmaps/Makefile.am: Define ERROR_ICONS and extend oidapix_DATA. diff --git a/src/glibext/gbufferview.c b/src/glibext/gbufferview.c index e134118..e2aa194 100644 --- a/src/glibext/gbufferview.c +++ b/src/glibext/gbufferview.c @@ -129,7 +129,7 @@ static void g_buffer_view_class_init(GBufferViewClass *class) G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET(GBufferViewClass, need_redraw), NULL, NULL, - g_cclosure_marshal_VOID__OBJECT, + g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } |