summaryrefslogtreecommitdiffstats
path: root/src/widgets/platforms/mac/qregion_mac.cpp
diff options
context:
space:
mode:
authorOlli Werwolff <qt-info@nokia.com>2011-06-08 09:51:07 +0200
committerOlli Werwolff <qt-info@nokia.com>2011-06-08 10:43:55 +0200
commit819f9ca965279562f34895dab405f28162c0b8ab (patch)
tree8e129b6846ec1762c5d33c4788be58abb29ad95b /src/widgets/platforms/mac/qregion_mac.cpp
parent6a243e555901b4345fec83b064ff378863f2d147 (diff)
Use Q_WIDGETS_EXPORT for widgets library
Reviewed-by: Lars Knoll
Diffstat (limited to 'src/widgets/platforms/mac/qregion_mac.cpp')
-rw-r--r--src/widgets/platforms/mac/qregion_mac.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/widgets/platforms/mac/qregion_mac.cpp b/src/widgets/platforms/mac/qregion_mac.cpp
index 3a0346abc4..94805a7f80 100644
--- a/src/widgets/platforms/mac/qregion_mac.cpp
+++ b/src/widgets/platforms/mac/qregion_mac.cpp
@@ -66,7 +66,7 @@ static void qt_mac_cleanup_rgncache()
}
#endif
-Q_GUI_EXPORT RgnHandle qt_mac_get_rgn()
+Q_WIDGETS_EXPORT RgnHandle qt_mac_get_rgn()
{
#ifdef RGN_CACHE_SIZE
if(!rgncache_init) {
@@ -90,7 +90,7 @@ Q_GUI_EXPORT RgnHandle qt_mac_get_rgn()
return NewRgn();
}
-Q_GUI_EXPORT void qt_mac_dispose_rgn(RgnHandle r)
+Q_WIDGETS_EXPORT void qt_mac_dispose_rgn(RgnHandle r)
{
#ifdef RGN_CACHE_SIZE
if(rgncache_init && rgncache_used < RGN_CACHE_SIZE) {
@@ -116,7 +116,7 @@ static OSStatus qt_mac_get_rgn_rect(UInt16 msg, RgnHandle, const Rect *rect, voi
return noErr;
}
-Q_GUI_EXPORT QRegion qt_mac_convert_mac_region(RgnHandle rgn)
+Q_WIDGETS_EXPORT QRegion qt_mac_convert_mac_region(RgnHandle rgn)
{
return QRegion::fromQDRgn(rgn);
}