Formatting/Whitespace Fixes.

Update Copyright year.


SVN revision: 35060
This commit is contained in:
Christopher Michael 2008-07-11 03:01:02 +00:00
parent b249ede4f1
commit 98161ff19a
1 changed files with 18 additions and 19 deletions

View File

@ -78,7 +78,7 @@ e_about_new(E_Container *con)
edje_object_part_text_set
(about->bg_object, "e.textblock.about",
_(
"Copyright &copy; 1999-2007, by the Enlightenment Development Team.<br>"
"Copyright &copy; 1999-2008, by the Enlightenment Development Team.<br>"
"<br>"
"We hope you enjoy using this software as much as we enjoyed "
"writing it.<br>"
@ -141,7 +141,8 @@ e_about_new(E_Container *con)
fclose(f);
if (tbuf)
{
edje_object_part_text_set(about->bg_object, "e.textblock.authors", tbuf);
edje_object_part_text_set(about->bg_object,
"e.textblock.authors", tbuf);
free(tbuf);
}
}
@ -189,8 +190,7 @@ _e_about_cb_delete(E_Win *win)
{
E_About *about;
about = win->data;
if (!about) return;
if (!(about = win->data)) return;
e_object_del(E_OBJECT(about));
}
@ -199,8 +199,7 @@ _e_about_cb_close(void *data, Evas_Object *obj, const char *emission, const char
{
E_About *about;
about = data;
if (!about) return;
if (!(about = data)) return;
e_util_defer_object_del(E_OBJECT(about));
}