summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/io-qtif.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdk-pixbuf/io-qtif.c')
-rw-r--r--gdk-pixbuf/io-qtif.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gdk-pixbuf/io-qtif.c b/gdk-pixbuf/io-qtif.c
index ee4ffd0ed..e0ebe6341 100644
--- a/gdk-pixbuf/io-qtif.c
+++ b/gdk-pixbuf/io-qtif.c
@@ -597,27 +597,27 @@ MODULE_ENTRY (fill_vtable) (GdkPixbufModule *module)
MODULE_ENTRY (fill_info) (GdkPixbufFormat *info)
{
- static GdkPixbufModulePattern signature[] = {
+ static const GdkPixbufModulePattern signature[] = {
{ "abcdidsc", "xxxx ", 100 },
{ "abcdidat", "xxxx ", 100 },
{ NULL, NULL, 0 }
};
- static gchar * mime_types[] = {
+ static const gchar *mime_types[] = {
"image/x-quicktime",
"image/qtif",
NULL
};
- static gchar * extensions[] = {
+ static const gchar *extensions[] = {
"qtif",
"qif",
NULL
};
info->name = "qtif";
- info->signature = signature;
+ info->signature = (GdkPixbufModulePattern *) signature;
info->description = N_("The QTIF image format");
- info->mime_types = mime_types;
- info->extensions = extensions;
+ info->mime_types = (gchar **) mime_types;
+ info->extensions = (gchar **) extensions;
info->flags = GDK_PIXBUF_FORMAT_THREADSAFE;
info->license = "LGPL";
}