├── .tag └── README.md /.tag: -------------------------------------------------------------------------------- 1 | ffad63daff96760bca44c83215995fa0240d5773 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # QtMacExtras 2 | 3 | **The QtMacExtras module has been deprecated and is no longer part of Qt.** 4 | 5 | The functionality of the module has been incorporated into other parts of Qt, or in some cases 6 | removed due to being obsolete or better suited as cross platform APIs. 7 | 8 | For more details, see [QTBUG-93629](https://bugreports.qt.io/browse/QTBUG-93629) in the Qt issue 9 | tracker. 10 | 11 | ## Porting away from QtMacExtras 12 | 13 | To learn more about how to port from QtMacExtras to alternative APIs please visit the 14 | [Qt 6 porting guide](https://doc.qt.io/qt-6/portingguide.html). 15 | 16 | ## Working on Qt 5 17 | 18 | To work on patches for the Qt 5 series, check out a local branch of the relevant Qt version, e.g.: 19 | 20 | ```bash 21 | $ git checkout 5.15 22 | Branch '5.15' set up to track remote branch '5.15' from 'origin' by rebasing. 23 | Switched to a new branch '5.15' 24 | ``` 25 | 26 | ## Going back in time 27 | 28 | To inspect the code in the `dev` branch prior to its removal, follow these steps: 29 | 30 | ```bash 31 | $ git checkout -b my-dev 1af4a00d7 32 | Switched to a new branch 'my-dev' 33 | ``` 34 | --------------------------------------------------------------------------------