From 04805ec38c6807be2aa308d88565e6fa3ee767b0 Mon Sep 17 00:00:00 2001 From: kaetemi Date: Sat, 31 Oct 2020 16:46:00 +0800 Subject: [PATCH] Fix build --- ryzom/client/src/connection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ryzom/client/src/connection.cpp b/ryzom/client/src/connection.cpp index cf0abdbfd..2885ee1ac 100644 --- a/ryzom/client/src/connection.cpp +++ b/ryzom/client/src/connection.cpp @@ -3478,7 +3478,7 @@ class CAHInitImportCharacter : public IActionHandler { CViewText *text = dynamic_cast(newLine->getView("name")); if (text) - text->setText(ucstring(savedCharacters[i])); + text->setText(string(savedCharacters[i])); // first button is pushed CCtrlButton *button = dynamic_cast(newLine->getCtrl("but"));