desktop-file-utils/desktop-file-utils-0.11-make-category-validation-non-fatal.patch
Ray Strode fde022b509 - make desktop file validation non-fatal until we add support for
categories beginning with X- and clean up our menu system to not
    require invalid categories (bug 212048)
2006-10-26 14:05:54 +00:00

12 lines
559 B
Diff

--- desktop-file-utils-0.11/src/validate.c.make-category-validation-non-fatal 2006-10-26 10:07:30.000000000 -0400
+++ desktop-file-utils-0.11/src/validate.c 2006-10-26 10:07:37.000000000 -0400
@@ -285,7 +285,7 @@
char *valid_onlyshowins;
valid_onlyshowins = g_strjoinv ("\", \"", (gchar **) onlyshowin_keys);
- print_fatal (filename, "%s values must be one of \"%s\" (found \"%s\")\n",
+ print_warning (filename, "%s values must be one of \"%s\" (found \"%s\")\n",
key, valid_onlyshowins, vals[i]);
g_free (valid_onlyshowins);
}