Fix some missing override
This commit is contained in:
parent
97418bfe04
commit
ba405aaa5f
|
|
@ -58,7 +58,7 @@ namespace Ndk
|
||||||
void HandleSelectionIndentation(bool add) override;
|
void HandleSelectionIndentation(bool add) override;
|
||||||
void HandleWordCursorMove(bool left) override;
|
void HandleWordCursorMove(bool left) override;
|
||||||
|
|
||||||
void UpdateDisplayText();
|
void UpdateDisplayText() override;
|
||||||
|
|
||||||
Nz::SimpleTextDrawer m_drawer;
|
Nz::SimpleTextDrawer m_drawer;
|
||||||
Nz::String m_text;
|
Nz::String m_text;
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@ namespace Nz
|
||||||
std::size_t GetGlyphCount() const override;
|
std::size_t GetGlyphCount() const override;
|
||||||
const Line& GetLine(std::size_t index) const override;
|
const Line& GetLine(std::size_t index) const override;
|
||||||
std::size_t GetLineCount() const override;
|
std::size_t GetLineCount() const override;
|
||||||
float GetMaxLineWidth() const;
|
float GetMaxLineWidth() const override;
|
||||||
const Color& GetOutlineColor() const;
|
const Color& GetOutlineColor() const;
|
||||||
float GetOutlineThickness() const;
|
float GetOutlineThickness() const;
|
||||||
TextStyleFlags GetStyle() const;
|
TextStyleFlags GetStyle() const;
|
||||||
|
|
@ -47,7 +47,7 @@ namespace Nz
|
||||||
void SetCharacterSize(unsigned int characterSize);
|
void SetCharacterSize(unsigned int characterSize);
|
||||||
void SetColor(const Color& color);
|
void SetColor(const Color& color);
|
||||||
void SetFont(Font* font);
|
void SetFont(Font* font);
|
||||||
void SetMaxLineWidth(float lineWidth);
|
void SetMaxLineWidth(float lineWidth) override;
|
||||||
void SetOutlineColor(const Color& color);
|
void SetOutlineColor(const Color& color);
|
||||||
void SetOutlineThickness(float thickness);
|
void SetOutlineThickness(float thickness);
|
||||||
void SetStyle(TextStyleFlags style);
|
void SetStyle(TextStyleFlags style);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue