Fix some spelling errors

2007-10-22  Soren Sandmann <sandmann@daimi.au.dk>

	* sfile.c: Fix some spelling errors

	* profile.[ch], sysprof.[ch]: Change "non_recursive" to
	"cumulative" to match the UI

	* profile.c (add_trace_to_tree): Add a couple of asserts.

	* TODO: updates


svn path=/trunk/; revision=383
This commit is contained in:
Soren Sandmann
2007-10-22 13:48:30 +00:00
committed by Søren Sandmann Pedersen
parent 686baf3304
commit 002f00a950
6 changed files with 46 additions and 13 deletions

View File

@ -448,7 +448,7 @@ handle_text (GMarkupParseContext *context,
{
if (!get_number (text, &instruction.u.pointer.target_id))
{
set_invalid_content_error (err, "Contents '%s' of pointer element is not a number", text);
set_invalid_content_error (err, "Content '%s' of pointer element is not a number", text);
return;
}
}
@ -456,7 +456,7 @@ handle_text (GMarkupParseContext *context,
{
if (!get_number (text, &instruction.u.integer.value))
{
set_invalid_content_error (err, "Contents '%s' of integer element not a number", text);
set_invalid_content_error (err, "Content '%s' of integer element is not a number", text);
return;
}
}
@ -464,7 +464,7 @@ handle_text (GMarkupParseContext *context,
{
if (!decode_text (text, &instruction.u.string.value))
{
set_invalid_content_error (err, "Contents '%s' of text element is illformed", text);
set_invalid_content_error (err, "Content '%s' of text element is ill-formed", text);
return;
}
}