mirror of
https://github.com/OpenTTD/OpenTTD
synced 2026-01-18 09:52:44 +01:00
Codefix: Use snake_case instead of camelCase in layouters.
This commit is contained in:
committed by
Peter Nelson
parent
d623aa0dfb
commit
c78e309b16
@@ -79,12 +79,12 @@ public:
|
||||
* Get the actual ParagraphLayout for the given buffer.
|
||||
* @param buff The begin of the buffer.
|
||||
* @param buff_end The location after the last element in the buffer.
|
||||
* @param fontMapping THe mapping of the fonts.
|
||||
* @param font_mapping The mapping of the fonts.
|
||||
* @return The ParagraphLayout instance.
|
||||
*/
|
||||
/* static */ std::unique_ptr<ParagraphLayouter> FallbackParagraphLayoutFactory::GetParagraphLayout(char32_t *buff, char32_t *buff_end, FontMap &fontMapping)
|
||||
/* static */ std::unique_ptr<ParagraphLayouter> FallbackParagraphLayoutFactory::GetParagraphLayout(char32_t *buff, char32_t *buff_end, FontMap &font_mapping)
|
||||
{
|
||||
return std::make_unique<FallbackParagraphLayout>(buff, buff_end - buff, fontMapping);
|
||||
return std::make_unique<FallbackParagraphLayout>(buff, buff_end - buff, font_mapping);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user