Fix ico.json to avoid returning an empty mimetype

QImageWriter::supportedMimeTypes() had an empty mimetype name
in the list because the mimetype for the key "cur" was missing in this
json file.

Change-Id: I4eae4275cb04c4d640dbcac76cd9dc99baa4f0a7
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
bb10
David Faure 2018-04-05 18:00:55 +02:00
parent 558dd7f587
commit 4386887b10
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{
"Keys": [ "ico", "cur" ],
"MimeTypes": [ "image/vnd.microsoft.icon" ]
"MimeTypes": [ "image/vnd.microsoft.icon", "image/vnd.microsoft.icon" ]
}