aboutsummaryrefslogtreecommitdiff
path: root/src/client/QXmppRegistrationManager.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Disable Qt keywords completelyLinus Jahn2022-12-261-11/+11
| | | | | | | | | | | | | | | Previously we had the policy that no qt keywords were allowed in headers that may be included by users. However since there was no automatic test verifying that in some places keywords were still used. This now disables qt keywords completely, also in tests and examples. Qt keywords are in general no good or really good idea as they even conflict with the standard library (`emit` at least). In some cases in the examples I just removed the slot tag if the functions didn't need to be slots (anymore). Closes #503.
* Reformat codeLinus Jahn2022-09-061-1/+2
|
* RegistrationManager: Replace QScopedPointer with unique_ptrLinus Jahn2022-09-021-1/+1
| | | | | The <memory> header is already included and there are no reasons to use something different than non-Qt C++ projects use.
* Provide QObject as third parameter to connect()Linus Jahn2022-03-131-1/+1
|
* Merge branch '1.4'Linus Jahn2022-03-131-2/+4
|\
| * Merge branch '1.3' into 1.4Linus Jahn2022-03-131-2/+4
| |\
| | * RegistrationManager: Fix setting form type of cached registration formLinus Jahn2022-03-131-2/+4
| | |
* | | 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
|/
* Fix switch statement when handling IQ stanza for registrationMelvin Keskin2020-03-241-0/+2
|
* QXmppRegistrationManager: Fix typo in deleteAccountIqIdLinus Jahn2020-02-061-4/+4
|
* QXmppRegistrationManager: Handle result of deleteAccount()Linus Jahn2020-02-061-7/+27
| | | | This adds two signals to make the result easily available to the user.
* Add new QXmppRegistrationManagerLinus Jahn2020-02-041-0/+301