aboutsummaryrefslogtreecommitdiff
path: root/src/client/QXmppRegistrationManager.h
Commit message (Collapse)AuthorAgeFilesLines
* RegistrationManager: Replace QScopedPointer with unique_ptrLinus Jahn2022-09-021-3/+1
| | | | | The <memory> header is already included and there are no reasons to use something different than non-Qt C++ projects use.
* Convert copyright headers to REUSELinus Jahn2022-01-141-23/+4
|
* Update copyright years (2022 edition)Linus Jahn2022-01-091-1/+1
|
* Update copyright headers to 2021Linus Jahn2021-02-191-1/+1
|
* Make QXmpp work with projects using QT_NO_KEYWORDSLinus Jahn2020-02-111-3/+3
| | | | | | | | | | | This replaces all occurencies of 'slots' and 'signals' with 'Q_SLOTS' and 'Q_SIGNALS'. This allows for smooth integration with software projects that need QT_NO_KEYWORDS, such as those ones that rely on boost libraries. Closes #115. Co-authored-by: Tommaso Cucinotta <tommaso.cucinotta@santannapisa.it>
* QXmppRegistrationManager: Handle result of deleteAccount()Linus Jahn2020-02-061-9/+21
| | | | This adds two signals to make the result easily available to the user.
* QXmppRegistrationManager: Pass stanza error by valueLinus Jahn2020-02-061-2/+2
| | | | | It uses QSharedDataPointer<> internally, so passing by value is recommended.
* Add new QXmppRegistrationManagerLinus Jahn2020-02-041-0/+361