Fixed: #1374 Rolled back a const-ness change and tested connecting to Ring successfully.
This commit is contained in:
parent
b1147e37b4
commit
06359f6a73
1 changed files with 1 additions and 1 deletions
|
@ -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; }
|
||||
|
|
Loading…
Reference in a new issue