Core/String: Fix movement leaving a null shared string

This commit is contained in:
Jérôme Leclercq
2017-11-22 09:27:23 +01:00
parent 046926e4d4
commit 9c9b9ed49f
3 changed files with 7 additions and 7 deletions

View File

@@ -18,6 +18,7 @@ Nazara Engine:
- Simplification of methods Matrix4::SetRotation() and Quaternion::MakeRotationBetween()
- Fix mouve moved event generated on X11 platform when doing Mouse::SetPosition()
- ⚠️ Reworked Flags class, replaced EnumAsFlags<E>::value by IsEnumFlag<E>::value, EnumAsFlags<E> no longer need to contains a `value` field. The `max` field can also be of the same type as the enum.
- Fix String movement constructor, which was leaving a null shared string (which was not reusable)
Nazara Development Kit:
- Added ImageWidget (#139)