From 06359f6a73aadaa952f75a40a9e8a403636d51e9 Mon Sep 17 00:00:00 2001 From: sfb Date: Thu, 10 May 2012 08:06:19 -0500 Subject: [PATCH] Fixed: #1374 Rolled back a const-ness change and tested connecting to Ring successfully. --- code/ryzom/client/src/interface_v3/group_tree.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ryzom/client/src/interface_v3/group_tree.h b/code/ryzom/client/src/interface_v3/group_tree.h index c2a299c01..556abab99 100644 --- a/code/ryzom/client/src/interface_v3/group_tree.h +++ b/code/ryzom/client/src/interface_v3/group_tree.h @@ -106,7 +106,7 @@ public: void setOpened(bool opened) { Opened = opened; } bool getOpened() const { return Opened; } void setText(const ucstring &text) { Text = text; } - const ucstring& getText() const { return Text; } + ucstring getText() const { return Text; } sint32 getFontSize() const { return FontSize; } void setFontSize(sint32 value) { FontSize = value; } sint32 getYDecal() const { return YDecal; }