aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorMorten Johan Sørvig <morten.sorvig@digia.com>2013-04-08 12:35:55 +0200
committerMorten Johan Sørvig <morten.sorvig@digia.com>2013-04-08 12:36:30 +0200
commitc66643a7999c2727b13336c4e4a47837960c3603 (patch)
treefad2c93af62f225a873edb67104d37623f283d95 /examples
parent166731f0f122d7f40a8f3ba4f51cac00bde23359 (diff)
Compile.
Change-Id: Id14217ee1ad96499c58f16508860601978312283 Reviewed-by: Morten Johan Sørvig <morten.sorvig@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 c4aece1..77f16a1 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 = toMacCGImageRef(pixmap);
- QPixmap pixmap2 = fromMacCGImageRef(cgImage);
+ CGImageRef cgImage = Qt::toMacCGImageRef(pixmap);
+ QPixmap pixmap2 = Qt::fromMacCGImageRef(cgImage);
return app.exec();
}