From 89a235e53a70174d9d9493be5891df9df3ce742d Mon Sep 17 00:00:00 2001 From: Jake Petroules Date: Fri, 12 Apr 2013 21:32:16 -0400 Subject: Remove the now-unnecessary "Mac" infixes from namespaced functions. Change-Id: I9dc0730a837ed091de6285f1b6f8b014f762a921 Reviewed-by: Gabriel de Dietrich --- examples/macfunctions/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples') 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(); } -- cgit v1.2.3