diff options
author | number Zero <numzer0@yandex.ru> | 2018-11-05 14:56:12 +0300 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2018-11-11 18:08:15 +0100 |
commit | d90e3ea88d3073a5dd0094937216aea0b35c1ce4 (patch) | |
tree | 13648d22055b4ffaa78d669ac971b911c639f364 /src/gui/intlGUIEditBox.cpp | |
parent | 6c42ebfafa7bc5762fe7ad64b4b9087ba1bc3c38 (diff) | |
download | dragonfireclient-d90e3ea88d3073a5dd0094937216aea0b35c1ce4.tar.xz |
Drop .NET-specific workaround: _IRR_IMPLEMENT_MANAGED_MARSHALLING_BUGFIX
Diffstat (limited to 'src/gui/intlGUIEditBox.cpp')
-rw-r--r-- | src/gui/intlGUIEditBox.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/gui/intlGUIEditBox.cpp b/src/gui/intlGUIEditBox.cpp index 374fcc8bb..0c596d3b9 100644 --- a/src/gui/intlGUIEditBox.cpp +++ b/src/gui/intlGUIEditBox.cpp @@ -182,7 +182,6 @@ void intlGUIEditBox::enableOverrideColor(bool enable) bool intlGUIEditBox::isOverrideColorEnabled() const { - _IRR_IMPLEMENT_MANAGED_MARSHALLING_BUGFIX; return OverrideColorEnabled; } @@ -208,7 +207,6 @@ void intlGUIEditBox::updateAbsolutePosition() //! Checks if word wrap is enabled bool intlGUIEditBox::isWordWrapEnabled() const { - _IRR_IMPLEMENT_MANAGED_MARSHALLING_BUGFIX; return WordWrap; } @@ -223,7 +221,6 @@ void intlGUIEditBox::setMultiLine(bool enable) //! Checks if multi line editing is enabled bool intlGUIEditBox::isMultiLineEnabled() const { - _IRR_IMPLEMENT_MANAGED_MARSHALLING_BUGFIX; return MultiLine; } @@ -243,7 +240,6 @@ void intlGUIEditBox::setPasswordBox(bool passwordBox, wchar_t passwordChar) bool intlGUIEditBox::isPasswordBox() const { - _IRR_IMPLEMENT_MANAGED_MARSHALLING_BUGFIX; return PasswordBox; } @@ -980,7 +976,6 @@ void intlGUIEditBox::setAutoScroll(bool enable) //! \return true if automatic scrolling is enabled, false if not bool intlGUIEditBox::isAutoScrollEnabled() const { - _IRR_IMPLEMENT_MANAGED_MARSHALLING_BUGFIX; return AutoScroll; } |