summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/code/doc_src_mac-differences.cpp
blob: 97646f77828078f3b67931965e0321eed372f442 (plain)
1
2
3
4
5
6
7
8
9
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [1]
#ifdef Q_OS_MAC
    QString bundlePath = QString::fromNSString(NSBundle.mainBundle.bundlePath);
    qDebug() << "Bundle path =" << bundlePath;
#endif
//! [1]