1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:47:35 +00:00

AK: Rename Retainable.h => RefCounted.h.

This commit is contained in:
Andreas Kling 2019-06-21 18:58:45 +02:00
parent 550b0b062b
commit d343fb2429
31 changed files with 30 additions and 30 deletions

View file

@ -2,7 +2,7 @@
#include "Size.h"
#include <AK/RefPtr.h>
#include <AK/Retainable.h>
#include <AK/RefCounted.h>
class CharacterBitmap : public RefCounted<CharacterBitmap> {
public:

View file

@ -3,7 +3,7 @@
#include <AK/AKString.h>
#include <AK/MappedFile.h>
#include <AK/RefPtr.h>
#include <AK/Retainable.h>
#include <AK/RefCounted.h>
#include <AK/Types.h>
#include <SharedGraphics/Rect.h>

View file

@ -6,7 +6,7 @@
#include <AK/AKString.h>
#include <AK/MappedFile.h>
#include <AK/RefPtr.h>
#include <AK/Retainable.h>
#include <AK/RefCounted.h>
#include <AK/StringView.h>
#include <SharedBuffer.h>