when a font cannot be loaded (because -fd was omitted, for example), just print a warning instead of an error message. i.e., fonts are treated the same way images are.

SVN revision: 11799
This commit is contained in:
tsauerbeck 2004-10-09 16:23:29 +00:00 committed by tsauerbeck
parent 0a8b298d6a
commit 4c702d01dc
1 changed files with 2 additions and 4 deletions

View File

@ -194,9 +194,8 @@ data_write(void)
}
if (!fdata)
{
fprintf(stderr, "%s: Error. unable to write font part \"%s\" entry to %s \n",
progname, fn->file, file_out);
ABORT_WRITE(ef, file_out);
fprintf(stderr, "%s: Warning. unable to open font \"%s\" for inclusion in output\n",
progname, fn->file);
}
else
{
@ -366,7 +365,6 @@ data_write(void)
for (ll = pc->parts; ll; ll = ll->next)
{
Edje_Part *ep;
Evas_List *l3;
Edje_Part_Description *epd;
ep = ll->data;