From a1cef5b81a60c439c87637507f818a49fe96c60e Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Thu, 21 Oct 2010 17:33:15 +0200 Subject: 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. --- client/controller.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client/controller.h') 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: -- cgit