summaryrefslogtreecommitdiff
path: root/src/os/macosx
diff options
context:
space:
mode:
authorMichael Lutz <michi@icosahedron.de>2019-04-02 21:30:34 +0200
committerMichael Lutz <michi@icosahedron.de>2019-04-09 22:45:15 +0200
commitfbc4cef180a60d8875df6298364f0459beb3568a (patch)
tree9e98cf68e1ea19b01a16639017509c9f2d55a292 /src/os/macosx
parentd95c7083ea582ea723107aa42f27b8cf3e3365e1 (diff)
downloadopenttd-fbc4cef180a60d8875df6298364f0459beb3568a.tar.xz
Codechange: Use override specifier for text layout classes.
Diffstat (limited to 'src/os/macosx')
-rw-r--r--src/os/macosx/string_osx.cpp28
-rw-r--r--src/os/macosx/string_osx.h8
2 files changed, 18 insertions, 18 deletions
diff --git a/src/os/macosx/string_osx.cpp b/src/os/macosx/string_osx.cpp
index e14ca4183..f26421e36 100644
--- a/src/os/macosx/string_osx.cpp
+++ b/src/os/macosx/string_osx.cpp
@@ -54,13 +54,13 @@ public:
public:
CoreTextVisualRun(CTRunRef run, Font *font, const CoreTextParagraphLayoutFactory::CharType *buff);
- virtual const GlyphID *GetGlyphs() const { return &this->glyphs[0]; }
- virtual const float *GetPositions() const { return &this->positions[0]; }
- virtual const int *GetGlyphToCharMap() const { return &this->glyph_to_char[0]; }
+ const GlyphID *GetGlyphs() const override { return &this->glyphs[0]; }
+ const float *GetPositions() const override { return &this->positions[0]; }
+ const int *GetGlyphToCharMap() const override { return &this->glyph_to_char[0]; }
- virtual const Font *GetFont() const { return this->font; }
- virtual int GetLeading() const { return this->font->fc->GetHeight(); }
- virtual int GetGlyphCount() const { return (int)this->glyphs.size(); }
+ const Font *GetFont() const override { return this->font; }
+ int GetLeading() const override { return this->font->fc->GetHeight(); }
+ int GetGlyphCount() const override { return (int)this->glyphs.size(); }
int GetAdvance() const { return this->total_advance; }
};
@@ -83,12 +83,12 @@ public:
CFRelease(line);
}
- virtual int GetLeading() const;
- virtual int GetWidth() const;
- virtual int CountRuns() const { return this->size(); }
- virtual const VisualRun *GetVisualRun(int run) const { return this->at(run); }
+ int GetLeading() const override;
+ int GetWidth() const override;
+ int CountRuns() const override { return this->size(); }
+ const VisualRun *GetVisualRun(int run) const override { return this->at(run); }
- int GetInternalCharLength(WChar c) const
+ int GetInternalCharLength(WChar c) const override
{
/* CoreText uses UTF-16 internally which means we need to account for surrogate pairs. */
return c >= 0x010000U ? 2 : 1;
@@ -100,17 +100,17 @@ public:
this->Reflow();
}
- virtual ~CoreTextParagraphLayout()
+ ~CoreTextParagraphLayout() override
{
CFRelease(this->typesetter);
}
- virtual void Reflow()
+ void Reflow() override
{
this->cur_offset = 0;
}
- virtual const Line *NextLine(int max_width);
+ const Line *NextLine(int max_width) override;
};
diff --git a/src/os/macosx/string_osx.h b/src/os/macosx/string_osx.h
index d632b0a44..8c9b7058a 100644
--- a/src/os/macosx/string_osx.h
+++ b/src/os/macosx/string_osx.h
@@ -30,10 +30,10 @@ class OSXStringIterator : public StringIterator {
size_t cur_pos; ///< Current iteration position.
public:
- virtual void SetString(const char *s);
- virtual size_t SetCurPosition(size_t pos);
- virtual size_t Next(IterType what);
- virtual size_t Prev(IterType what);
+ void SetString(const char *s) override;
+ size_t SetCurPosition(size_t pos) override;
+ size_t Next(IterType what) override;
+ size_t Prev(IterType what) override;
static StringIterator *Create();
};