1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:37:35 +00:00

SharedGraphics: Removed some unused stuff from Font.

This commit is contained in:
Andreas Kling 2019-02-17 00:36:55 +01:00
parent 53c69dbade
commit 10d6f9ce31
4 changed files with 3 additions and 26 deletions

View file

@ -1,6 +1,6 @@
#pragma once
#include "CharacterBitmap.h"
#include <SharedGraphics/Rect.h>
#include <AK/Retainable.h>
#include <AK/RetainPtr.h>
#include <AK/AKString.h>
@ -69,8 +69,6 @@ private:
unsigned* m_rows { nullptr };
void* m_mmap_ptr { nullptr };
RetainPtr<CharacterBitmap> m_error_bitmap;
byte m_glyph_width { 0 };
byte m_glyph_height { 0 };
};