diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-10-31 13:11:40 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2013-11-15 16:51:58 +0100 |
commit | 50db10cac34203040abf7d04eae2f9f8dc0d3ed7 (patch) | |
tree | 5cfd7c64313fc29df45720ba09e0d4fc7f38e8b5 /include | |
parent | 3e5dd1e72d3f1daa87cc1d786ba3abee54ebce33 (diff) |
Fix copypasta
Change-Id: Ib5e7162426ab08a1912a19d4e3a00c794e4fb80e
Diffstat (limited to 'include')
-rw-r--r-- | include/touch/touch.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/touch/touch.h b/include/touch/touch.h index f9f6e2dc3548..3f5beb0c138d 100644 --- a/include/touch/touch.h +++ b/include/touch/touch.h @@ -141,8 +141,8 @@ CGSizeToMLOPixelSize(CGSize cgSize) CG_INLINE CGSize MLOPixelsToCGSize(MLOPixel width, MLOPixel height) { - CGFloat fWidth = CGFloatToMLOPixel(width); - CGFloat fHeight = CGFloatToMLOPixel(height); + CGFloat fWidth = MLOPixelToCGFloat(width); + CGFloat fHeight = MLOPixelToCGFloat(height); return CGSizeMake(fWidth, fHeight); } |