summaryrefslogtreecommitdiff
path: root/Libraries/LibGfx/AffineTransform.h
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibGfx/AffineTransform.h')
-rw-r--r--Libraries/LibGfx/AffineTransform.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Libraries/LibGfx/AffineTransform.h b/Libraries/LibGfx/AffineTransform.h
index 9cc2b080d7..9e6aa35113 100644
--- a/Libraries/LibGfx/AffineTransform.h
+++ b/Libraries/LibGfx/AffineTransform.h
@@ -43,13 +43,13 @@ public:
void map(float unmapped_x, float unmapped_y, float& mapped_x, float& mapped_y) const;
- Point map(const Point&) const;
+ IntPoint map(const IntPoint&) const;
FloatPoint map(const FloatPoint&) const;
- Size map(const Size&) const;
+ IntSize map(const IntSize&) const;
FloatSize map(const FloatSize&) const;
- Rect map(const Rect&) const;
+ IntRect map(const IntRect&) const;
FloatRect map(const FloatRect&) const;
float a() const { return m_values[0]; }