summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGfx/ShareableBitmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibGfx/ShareableBitmap.h')
-rw-r--r--Userland/Libraries/LibGfx/ShareableBitmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibGfx/ShareableBitmap.h b/Userland/Libraries/LibGfx/ShareableBitmap.h
index 3eefade8ac..04e5985582 100644
--- a/Userland/Libraries/LibGfx/ShareableBitmap.h
+++ b/Userland/Libraries/LibGfx/ShareableBitmap.h
@@ -21,7 +21,7 @@ public:
bool is_valid() const { return m_bitmap; }
- const Bitmap* bitmap() const { return m_bitmap; }
+ Bitmap const* bitmap() const { return m_bitmap; }
Bitmap* bitmap() { return m_bitmap; }
private:
@@ -34,7 +34,7 @@ private:
namespace IPC {
-bool encode(Encoder&, const Gfx::ShareableBitmap&);
+bool encode(Encoder&, Gfx::ShareableBitmap const&);
ErrorOr<void> decode(Decoder&, Gfx::ShareableBitmap&);
}