diff options
author | Hans de Goede <hdegoede@redhat.com> | 2010-10-21 17:33:15 +0200 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2010-10-25 11:36:35 +0200 |
commit | a1cef5b81a60c439c87637507f818a49fe96c60e (patch) | |
tree | 8eb6386b93e169eaae304c2a7a62f8e232c0c6e1 /client/controller.h | |
parent | 18e6edb93adf45adeccf994f5561b7dc92012cf8 (diff) |
controller: Make menu text utf-8
We are making all text send over the controller socket utf-8, rather then
having somethings as 8 bit (hostname) and others (title, menu) unicode16,
this patch completes this change by converting the menu handling.
Diffstat (limited to 'client/controller.h')
-rw-r--r-- | client/controller.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/controller.h b/client/controller.h index 924f351b..bf927073 100644 --- a/client/controller.h +++ b/client/controller.h @@ -90,7 +90,7 @@ private: bool read_msgs(); bool handle_init(ControllerInit *init); bool handle_message(ControllerMsg *hdr); - bool create_menu(wchar_t* resource); + bool create_menu(char* resource); bool set_multi_val(uint32_t op, char* multi_val); private: |