aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@petroules.com>2013-04-12 21:32:16 -0400
committerJake Petroules <jake.petroules@petroules.com>2013-04-15 14:51:21 +0200
commit89a235e53a70174d9d9493be5891df9df3ce742d (patch)
treee41a614642df0345f0a566b9f66d9fafca65001d /examples
parenta42a41d9049d660c26a76d5433e26d01b8e41911 (diff)
Remove the now-unnecessary "Mac" infixes from namespaced functions.
Change-Id: I9dc0730a837ed091de6285f1b6f8b014f762a921 Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@digia.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/macfunctions/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/macfunctions/main.cpp b/examples/macfunctions/main.cpp
index 53015ee..6faefde 100644
--- a/examples/macfunctions/main.cpp
+++ b/examples/macfunctions/main.cpp
@@ -61,8 +61,8 @@ int main(int argc, char **argv)
// Pixmap <-> CGImage conversion
QPixmap pixmap(":qtlogo.png");
- CGImageRef cgImage = QtMacExtras::toMacCGImageRef(pixmap);
- QPixmap pixmap2 = QtMacExtras::fromMacCGImageRef(cgImage);
+ CGImageRef cgImage = QtMacExtras::toCGImageRef(pixmap);
+ QPixmap pixmap2 = QtMacExtras::fromCGImageRef(cgImage);
return app.exec();
}