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

hg/feature/gsoc2013-dfighter
sfb 13 years ago
parent 36b4d1a298
commit 1fdaa8155b

@ -106,7 +106,7 @@ public:
void setOpened(bool opened) { Opened = opened; } void setOpened(bool opened) { Opened = opened; }
bool getOpened() const { return Opened; } bool getOpened() const { return Opened; }
void setText(const ucstring &text) { Text = text; } void setText(const ucstring &text) { Text = text; }
const ucstring& getText() const { return Text; } ucstring getText() const { return Text; }
sint32 getFontSize() const { return FontSize; } sint32 getFontSize() const { return FontSize; }
void setFontSize(sint32 value) { FontSize = value; } void setFontSize(sint32 value) { FontSize = value; }
sint32 getYDecal() const { return YDecal; } sint32 getYDecal() const { return YDecal; }

Loading…
Cancel
Save