diff options
author | Andy Shaw <andy.shaw@nokia.com> | 2010-05-04 07:43:12 (GMT) |
---|---|---|
committer | Andy Shaw <andy.shaw@nokia.com> | 2010-05-04 07:44:26 (GMT) |
commit | c1abca564b4ff30d7d061394424f500143deb466 (patch) | |
tree | e03ed3f721449b7067578148b5ad4d326ed5c6b4 /src/gui/widgets/qcocoatoolbardelegate_mac.mm | |
parent | e4c49c5344058aaa033a9928e96205c767b8e07d (diff) | |
download | Qt-c1abca564b4ff30d7d061394424f500143deb466.zip Qt-c1abca564b4ff30d7d061394424f500143deb466.tar.gz Qt-c1abca564b4ff30d7d061394424f500143deb466.tar.bz2 |
Ensure that the Mac specific Qt classes are namespaced
When configuring Qt to be in a namespace then the Mac specific Qt
classes should be namespaced as well to prevent any duplicated class
names when a non namespaced version of Qt is used in conjunction.
Reviewed-by: Richard
Diffstat (limited to 'src/gui/widgets/qcocoatoolbardelegate_mac.mm')
-rw-r--r-- | src/gui/widgets/qcocoatoolbardelegate_mac.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/qcocoatoolbardelegate_mac.mm b/src/gui/widgets/qcocoatoolbardelegate_mac.mm index b2a0e0c..e68ee7c 100644 --- a/src/gui/widgets/qcocoatoolbardelegate_mac.mm +++ b/src/gui/widgets/qcocoatoolbardelegate_mac.mm @@ -58,7 +58,7 @@ QT_FORWARD_DECLARE_CLASS(QMainWindowLayout); QT_FORWARD_DECLARE_CLASS(QToolBar); QT_FORWARD_DECLARE_CLASS(QCFString); -@implementation QCocoaToolBarDelegate +@implementation QT_MANGLE_NAMESPACE(QCocoaToolBarDelegate) - (id)initWithMainWindowLayout:(QMainWindowLayout *)layout { |