Skip to content

Commit

Permalink
change parameter types
Browse files Browse the repository at this point in the history
  • Loading branch information
seflerZ committed Apr 16, 2024
1 parent 1845e3d commit cdec850
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion sesman/chansrv/input_ibus.c
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ xrdp_input_unicode_init()
return 0;
}

LOG(LOG_LEVEL_DEBUG, "xrdp_ibus_init: Initializing the iBus engine");
LOG(LOG_LEVEL_INFO, "xrdp_ibus_init: Initializing the iBus engine");
ibus_init();
bus = ibus_bus_new();
g_object_ref_sink(bus);
Expand Down
7 changes: 3 additions & 4 deletions xrdp/xrdp.h
Original file line number Diff line number Diff line change
Expand Up @@ -483,10 +483,9 @@ xrdp_mm_suppress_output(struct xrdp_mm *self, int suppress,
int left, int top, int right, int bottom);
int
xrdp_mm_up_and_running(struct xrdp_mm *self);
int
xrdp_mm_send_unicode_to_chansrv(struct xrdp_mm *self,
int key_down,
uint32_t unicode);
int xrdp_mm_send_unicode_to_chansrv(struct xrdp_mm *self,
int key_down,
char32_t unicode);
struct xrdp_mm *
xrdp_mm_create(struct xrdp_wm *owner);
void
Expand Down
7 changes: 3 additions & 4 deletions xrdp/xrdp_mm.c
Original file line number Diff line number Diff line change
Expand Up @@ -2147,10 +2147,9 @@ xrdp_mm_up_and_running(struct xrdp_mm *self)
}

/******************************************************************************/
int
xrdp_mm_send_unicode_to_chansrv(struct xrdp_mm *self,
int key_down,
uint32_t unicode)
int xrdp_mm_send_unicode_to_chansrv(struct xrdp_mm *self,
int key_down,
char32_t unicode)
{
struct stream *s = trans_get_out_s(self->chan_trans, 8192);
if (s == NULL)
Expand Down
2 changes: 1 addition & 1 deletion xrdp/xrdp_wm.c
Original file line number Diff line number Diff line change
Expand Up @@ -1677,7 +1677,7 @@ xrdp_wm_key_sync(struct xrdp_wm *self, int device_flags, int key_flags)

/*****************************************************************************/
static int
xrdp_wm_key_unicode(struct xrdp_wm *self, int device_flags, int unicode)
xrdp_wm_key_unicode(struct xrdp_wm *self, int device_flags, char32_t unicode)
{
int index;

Expand Down

0 comments on commit cdec850

Please sign in to comment.