Fix case of NotFound message

svn path=/trunk/netsurf/; revision=2954
This commit is contained in:
Adrian Lees 2006-09-16 00:16:49 +00:00
parent 55a217c6be
commit 5b87995de7
1 changed files with 1 additions and 1 deletions

View File

@ -821,7 +821,7 @@ void show_all(bool all)
void show_status(bool found)
{
ro_gui_set_icon_string(dialog_search, ICON_SEARCH_STATUS,
found ? "" : messages_get("Notfound"));
found ? "" : messages_get("NotFound"));
}
#endif