Fixed: #1374 Rolled back a const-ness change and tested connecting to Ring successfully.

This commit is contained in:
sfb 2012-05-10 08:06:19 -05:00
parent b1147e37b4
commit 06359f6a73

View file

@ -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; }