diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2020-02-11 17:26:51 +0000 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2020-02-13 14:53:25 +0000 |
commit | 35ac7de140406e4a9a6d2e75134569c8c6b26fe4 (patch) | |
tree | c269375c81a9765d1a5c935b9adfc064c4854359 /gtk/gtktextbuffer.c | |
parent | 0d354d1dc457937f59f2a9e1572dfae4159bc49b (diff) | |
download | gtk+-35ac7de140406e4a9a6d2e75134569c8c6b26fe4.tar.gz |
Match argument name between declaration and definition
Otherwise the documentation and the introspection data will complain.
Diffstat (limited to 'gtk/gtktextbuffer.c')
-rw-r--r-- | gtk/gtktextbuffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtktextbuffer.c b/gtk/gtktextbuffer.c index abf6b6174d..c24bc61df4 100644 --- a/gtk/gtktextbuffer.c +++ b/gtk/gtktextbuffer.c @@ -2270,7 +2270,7 @@ gtk_text_buffer_real_insert_paintable (GtkTextBuffer *buffer, void gtk_text_buffer_insert_paintable (GtkTextBuffer *buffer, GtkTextIter *iter, - GdkPaintable *paintable) + GdkPaintable *paintable) { g_return_if_fail (GTK_IS_TEXT_BUFFER (buffer)); g_return_if_fail (iter != NULL); |