Ignore:
File:
1 edited

Legend:

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

    r28a5ebd r6feccae  
    4242#include <io/concaps.h>
    4343#include <io/console.h>
     44#include <loc.h>
    4445#include <task.h>
    4546#include <adt/list.h>
     
    419420                        if (event->type == CEV_KEY && event->ev.key.type == KEY_PRESS &&
    420421                            event->ev.key.c != 0) {
    421                                 char32_t tmp[2] = {
     422                                wchar_t tmp[2] = {
    422423                                        event->ev.key.c,
    423424                                        0
     
    436437}
    437438
    438 static void term_write_char(terminal_t *term, char32_t ch)
     439static void term_write_char(terminal_t *term, wchar_t ch)
    439440{
    440441        sysarg_t updated = 0;
     
    455456                break;
    456457        default:
    457                 updated = chargrid_putuchar(term->frontbuf, ch, true);
     458                updated = chargrid_putwchar(term->frontbuf, ch, true);
    458459        }
    459460
Note: See TracChangeset for help on using the changeset viewer.