Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/gui/terminal.c

    r6feccae r28a5ebd  
    4242#include <io/concaps.h>
    4343#include <io/console.h>
    44 #include <loc.h>
    4544#include <task.h>
    4645#include <adt/list.h>
     
    420419                        if (event->type == CEV_KEY && event->ev.key.type == KEY_PRESS &&
    421420                            event->ev.key.c != 0) {
    422                                 wchar_t tmp[2] = {
     421                                char32_t tmp[2] = {
    423422                                        event->ev.key.c,
    424423                                        0
     
    437436}
    438437
    439 static void term_write_char(terminal_t *term, wchar_t ch)
     438static void term_write_char(terminal_t *term, char32_t ch)
    440439{
    441440        sysarg_t updated = 0;
     
    456455                break;
    457456        default:
    458                 updated = chargrid_putwchar(term->frontbuf, ch, true);
     457                updated = chargrid_putuchar(term->frontbuf, ch, true);
    459458        }
    460459
Note: See TracChangeset for help on using the changeset viewer.