mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 08:17:34 +00:00
Everywhere: Fix spelling of "offsetted"
This word is actually pretty awkward in context, but this patch merely fixes the spelling instead of finding a better word.
This commit is contained in:
parent
daef7e2c71
commit
9387271049
10 changed files with 33 additions and 33 deletions
|
@ -63,7 +63,7 @@ ErrorOr<size_t> FramebufferDevice::vertical_offset(size_t head) const
|
|||
VERIFY(head == 0);
|
||||
return 0;
|
||||
}
|
||||
ErrorOr<bool> FramebufferDevice::vertical_offseted(size_t head) const
|
||||
ErrorOr<bool> FramebufferDevice::vertical_offsetted(size_t head) const
|
||||
{
|
||||
// Note: This FramebufferDevice class doesn't support multihead setup.
|
||||
// We take care to verify this at the GenericFramebufferDevice::ioctl method
|
||||
|
|
|
@ -55,7 +55,7 @@ private:
|
|||
virtual ErrorOr<size_t> height(size_t head) const override;
|
||||
virtual ErrorOr<size_t> width(size_t head) const override;
|
||||
virtual ErrorOr<size_t> vertical_offset(size_t head) const override;
|
||||
virtual ErrorOr<bool> vertical_offseted(size_t head) const override;
|
||||
virtual ErrorOr<bool> vertical_offsetted(size_t head) const override;
|
||||
|
||||
virtual ErrorOr<void> set_head_resolution(size_t head, size_t width, size_t height, size_t pitch) override;
|
||||
virtual ErrorOr<void> set_head_buffer(size_t head, bool second_buffer) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue