(Font) Removed default move-constructor
Former-commit-id: 15ccd22b9333327e761500f7b07f0ef7db8ad857
This commit is contained in:
parent
829e82fdd9
commit
b787ce94cf
|
|
@ -38,7 +38,6 @@ class NAZARA_API NzFont : public NzResource, NzAbstractAtlas::Listener, NzNonCop
|
||||||
struct SizeInfo;
|
struct SizeInfo;
|
||||||
|
|
||||||
NzFont();
|
NzFont();
|
||||||
NzFont(NzFont&& font) = default;
|
|
||||||
~NzFont();
|
~NzFont();
|
||||||
|
|
||||||
void ClearGlyphCache();
|
void ClearGlyphCache();
|
||||||
|
|
@ -75,8 +74,6 @@ class NAZARA_API NzFont : public NzResource, NzAbstractAtlas::Listener, NzNonCop
|
||||||
void SetGlyphBorder(unsigned int borderSize);
|
void SetGlyphBorder(unsigned int borderSize);
|
||||||
void SetMinimumStepSize(unsigned int minimumSizeStep);
|
void SetMinimumStepSize(unsigned int minimumSizeStep);
|
||||||
|
|
||||||
NzFont& operator=(NzFont&& font) = default;
|
|
||||||
|
|
||||||
enum ModicationCode
|
enum ModicationCode
|
||||||
{
|
{
|
||||||
ModificationCode_AtlasChanged,
|
ModificationCode_AtlasChanged,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue