diff --git a/AK/Bitmap.h b/AK/Bitmap.h index 9c7a4688291..8d8deda0911 100644 --- a/AK/Bitmap.h +++ b/AK/Bitmap.h @@ -148,6 +148,8 @@ public: return count; } + bool is_null() const { return !m_data; } + u8* data() { return m_data; } const u8* data() const { return m_data; }