aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@petroules.com>2013-04-12 21:34:46 -0400
committerJake Petroules <jake.petroules@petroules.com>2013-04-15 14:51:25 +0200
commitbee77e3873b61bb12269c579175a75040a18f99f (patch)
tree16817ada56e0270b74f648db329c1c36bdfae3dd /src
parent89a235e53a70174d9d9493be5891df9df3ce742d (diff)
Fix spelling error.
Change-Id: Ie5d49eee14b65ee982adbbc8f111f2055673c7f1 Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/macextras/qmacfunctions.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/macextras/qmacfunctions.mm b/src/macextras/qmacfunctions.mm
index c3a5bb5..70cd6cd 100644
--- a/src/macextras/qmacfunctions.mm
+++ b/src/macextras/qmacfunctions.mm
@@ -148,8 +148,8 @@ CGImageRef toCGImageRef(const QPixmap &pixmap)
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
QPlatformNativeInterface::NativeResourceForIntegrationFunction function = resolvePlatformFunction("qimagetocgimage");
if (function) {
- typedef CGImageRef (*QImageToCGIamgeFunction)(const QImage &image);
- return reinterpret_cast<QImageToCGIamgeFunction>(function)(pixmap.toImage());
+ typedef CGImageRef (*QImageToCGImageFunction)(const QImage &image);
+ return reinterpret_cast<QImageToCGImageFunction>(function)(pixmap.toImage());
}
return NULL;