Alpha 1.0.11: fix Qt 5.3.2 build.

Qt 5.3.2 QVector works only with types having an assignment operator.
This commit is contained in:
John Preston 2017-02-17 22:59:25 +03:00
parent b7c4e867e8
commit 8060c7e141
2 changed files with 10 additions and 6 deletions

View file

@ -108,12 +108,12 @@ private:
t_assert(!_colorizable || !colored()); t_assert(!_colorizable || !colored());
} }
const QString _id; QString _id;
const uint16 _x = 0; uint16 _x = 0;
const uint16 _y = 0; uint16 _y = 0;
const bool _hasPostfix = false; bool _hasPostfix = false;
const bool _colorizable = false; bool _colorizable = false;
const EmojiPtr _original = nullptr; EmojiPtr _original = nullptr;
friend void Init(); friend void Init();
friend class QVector<One>; friend class QVector<One>;

View file

@ -1,3 +1,7 @@
1.0.11 alpha (17.02.17)
- Bug fixes and other minor improvements.
1.0.10 alpha (17.02.17) 1.0.10 alpha (17.02.17)
- Support for more emoji. - Support for more emoji.