mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-23 23:09:39 +03:00
[project @ 2005-07-30 15:11:22 by adrianl]
Fix removal of 'Not found' message for non-RO5 systems svn path=/import/netsurf/; revision=1829
This commit is contained in:
parent
e37acd498f
commit
56b06d8449
@ -284,6 +284,15 @@ PrintSheetFilled:Druckseite
|
||||
PrintSheetsFilled:Druckseiten
|
||||
|
||||
|
||||
# Find text user interface tokens
|
||||
# ===============================
|
||||
#
|
||||
# This section contains tokens which are used in the find text
|
||||
# dialog box.
|
||||
#
|
||||
NotFound:Nicht gefunden
|
||||
|
||||
|
||||
# Content
|
||||
# =======
|
||||
#
|
||||
|
@ -284,6 +284,15 @@ PrintSheetFilled:sheet is filled
|
||||
PrintSheetsFilled:sheets are filled
|
||||
|
||||
|
||||
# Find text user interface tokens
|
||||
# ===============================
|
||||
#
|
||||
# This section contains tokens which are used in the find text
|
||||
# dialog box.
|
||||
#
|
||||
NotFound:Not found
|
||||
|
||||
|
||||
# Content
|
||||
# =======
|
||||
#
|
||||
|
@ -284,6 +284,15 @@ PrintSheetFilled:feuille remplie
|
||||
PrintSheetsFilled:feuilles remplies
|
||||
|
||||
|
||||
# Find text user interface tokens
|
||||
# ===============================
|
||||
#
|
||||
# This section contains tokens which are used in the find text
|
||||
# dialog box.
|
||||
#
|
||||
NotFound:Non trouvé
|
||||
|
||||
|
||||
# Content
|
||||
# =======
|
||||
#
|
||||
|
@ -285,6 +285,15 @@ PrintSheetFilled:pagina
|
||||
PrintSheetsFilled:pagina's
|
||||
|
||||
|
||||
# Find text user interface tokens
|
||||
# ===============================
|
||||
#
|
||||
# This section contains tokens which are used in the find text
|
||||
# dialog box.
|
||||
#
|
||||
NotFound:Vinden niet
|
||||
|
||||
|
||||
# Content
|
||||
# =======
|
||||
#
|
||||
|
@ -27,6 +27,7 @@
|
||||
#include "netsurf/riscos/menus.h"
|
||||
#include "netsurf/riscos/wimp.h"
|
||||
#include "netsurf/utils/log.h"
|
||||
#include "netsurf/utils/messages.h"
|
||||
#include "netsurf/utils/utils.h"
|
||||
|
||||
|
||||
@ -569,13 +570,8 @@ bool gui_search_term_highlighted(struct gui_window *g, struct box *box,
|
||||
|
||||
void show_status(bool found)
|
||||
{
|
||||
os_error *error = xwimp_set_icon_state(dialog_search, ICON_SEARCH_STATUS,
|
||||
found ? wimp_ICON_DELETED : 0, wimp_ICON_DELETED);
|
||||
if (error) {
|
||||
LOG(("xwimp_set_icon_state: 0x%x: %s",
|
||||
error->errnum, error->errmess));
|
||||
warn_user("WimpError", error->errmess);
|
||||
}
|
||||
ro_gui_set_icon_string(dialog_search, ICON_SEARCH_STATUS,
|
||||
found ? "" : messages_get("Notfound"));
|
||||
}
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user