Evas textblock: Improved error messages when detecting errors in markup.

This commit is contained in:
Tom Hacohen 2014-02-05 13:51:22 +00:00
parent c48c9827ff
commit 9cc7e69338
1 changed files with 3 additions and 3 deletions

View File

@ -6564,7 +6564,7 @@ evas_textblock_text_markup_to_utf8(const Evas_Object *eo_obj, const char *text)
}
else
{
ERR("There is a invalid markup tag. Please check the text.");
ERR("There is a invalid markup tag at positoin '%u'. Please check the text.", (unsigned int) (p - text));
}
}
if (*p == 0)
@ -6585,7 +6585,7 @@ evas_textblock_text_markup_to_utf8(const Evas_Object *eo_obj, const char *text)
}
else
{
ERR("There is a invalid markup tag. Please check the text.");
ERR("There is a invalid markup tag at positoin '%u'. Please check the text.", (unsigned int) (p - text));
}
}
}
@ -6612,7 +6612,7 @@ evas_textblock_text_markup_to_utf8(const Evas_Object *eo_obj, const char *text)
}
else
{
ERR("There is a invalid markup tag. Please check the text.");
ERR("There is a invalid markup tag at positoin '%u'. Please check the text.", (unsigned int) (p - text));
}
}
}