diff options
author | Benjamin Otte <otte@redhat.com> | 2020-03-02 03:39:14 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2020-03-02 04:43:56 +0100 |
commit | b2c3e39c89e4b2687422caf37284d0084bfd784f (patch) | |
tree | eae3c1afbd3eecfdc633cc5b6ebd51b6f99fa12d /gdk/gdkcontentformats.h | |
parent | 03882e1f960a738f1289db3747223dfc7cc2db1e (diff) | |
download | gtk+-b2c3e39c89e4b2687422caf37284d0084bfd784f.tar.gz |
contentformats: Constify some functions
Diffstat (limited to 'gdk/gdkcontentformats.h')
-rw-r--r-- | gdk/gdkcontentformats.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk/gdkcontentformats.h b/gdk/gdkcontentformats.h index 2fe983ea19..1798c48284 100644 --- a/gdk/gdkcontentformats.h +++ b/gdk/gdkcontentformats.h @@ -52,10 +52,10 @@ GDK_AVAILABLE_IN_ALL char * gdk_content_formats_to_string (GdkContentFormats *formats); GDK_AVAILABLE_IN_ALL -const GType * gdk_content_formats_get_gtypes (GdkContentFormats *formats, +const GType * gdk_content_formats_get_gtypes (const GdkContentFormats *formats, gsize *n_gtypes); GDK_AVAILABLE_IN_ALL -const char * const * gdk_content_formats_get_mime_types (GdkContentFormats *formats, +const char * const * gdk_content_formats_get_mime_types (const GdkContentFormats *formats, gsize *n_mime_types); GDK_AVAILABLE_IN_ALL |