1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00
elinks/src/bfu/widget.c
Witold Filipczyk 66305fcb50 [gettext] try system gettext. Refs #62
Now, only meson was changed.
-Dnls=true -Dgettext=true
2021-08-08 21:25:08 +02:00

25 lines
466 B
C

/* Common widget functions. */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <string.h>
#include "elinks.h"
#include "bfu/dialog.h"
#include "bfu/inphist.h"
#include "bfu/widget.h"
#include "intl/libintl.h"
#include "terminal/terminal.h"
#include "util/error.h"
void
display_widget(struct dialog_data *dlg_data, struct widget_data *widget_data)
{
if (widget_data->widget->ops->display)
widget_data->widget->ops->display(dlg_data, widget_data);
}