├── .tag └── README.md /.tag: -------------------------------------------------------------------------------- 1 | 694a3b095541389641d1da1f74732eac6a8c2a1a 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # QtX11Extras 2 | 3 | **The QtX11Extras 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 removed due to being obsolete or better suited as cross platform APIs. 6 | 7 | For more details, see [QTBUG-93633](https://bugreports.qt.io/browse/QTBUG-93633) in the Qt issue tracker. 8 | 9 | ## Porting away from QtX11Extras 10 | 11 | To learn more about how to port from QtX11Extras to alternative APIs please visit the [Qt 6 porting guide](https://doc.qt.io/qt-6/portingguide.html). 12 | 13 | ## Working on Qt 5 14 | 15 | To work on patches for the Qt 5 series, check out a local branch of the relevant Qt version, e.g.: 16 | 17 | ```bash 18 | $ git checkout 5.15 19 | Branch '5.15' set up to track remote branch '5.15' from 'origin' by rebasing. 20 | Switched to a new branch '5.15' 21 | ``` 22 | 23 | ## Going back in time 24 | 25 | To inspect the code in the `dev` branch prior to its removal, follow these steps: 26 | 27 | ```bash 28 | $ git checkout -b my-dev 0e67fb41c 29 | Switched to a new branch 'my-dev' 30 | ``` 31 | --------------------------------------------------------------------------------