aboutsummaryrefslogtreecommitdiff
path: root/src/client/QXmppMucManager.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Disable Qt keywords completelyLinus Jahn2022-12-261-27/+27
| | | | | | | | | | | | | | | 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-19/+36
|
* Replace raw pointers with unique_ptrLinus Jahn2022-09-021-18/+7
| | | | safer, simpler
* Fix possibly detaching containersLinus Jahn2022-03-131-1/+2
|
* Convert copyright headers to REUSELinus Jahn2022-01-141-22/+3
|
* Update copyright years (2022 edition)Linus Jahn2022-01-091-1/+1
|
* MucRoom::sendMessage: Improve explanation of the helper functionLinus Jahn2021-05-291-1/+6
| | | | Explain that and how it's possible to send custom messages.
* Replace qAsConst by std::as_constLinus Jahn2021-03-171-2/+2
|
* Update copyright headers to 2021Linus Jahn2021-02-191-1/+1
|
* Fix undocumented Q_PROPERTiesLinus Jahn2020-02-041-22/+0
|
* Run clang-format also on all cpp filesLinus Jahn2020-02-031-25/+18
|
* clang-format: Enable regrouping and sorting of includesLinus Jahn2020-02-031-3/+4
|
* Port majority of old-style connects (#237)JBB2020-01-201-25/+14
| | | This provides more type safety and is future-proof.
* Bump copyright year to 2020Linus Jahn2020-01-061-1/+1
|
* QXmppMucManager: Only return true if actually handled stanzaMartin Koller2019-10-271-3/+4
|
* Replace Q_FOREACH (foreach) by C++11 ranged for-loopsLinus Jahn2019-10-231-7/+9
| | | | | | | Q_FOREACH is bad and will be deprecated in the future: https://www.kdab.com/goodbye-q_foreach/ This also disables Q_FOREACH by defining QT_NO_FOREACH.
* Bump copyright year to 2019Jeremy Lainé2019-01-081-1/+1
|
* clarify the fact QXmppConstants_p.h is not APIJeremy Lainé2016-09-081-1/+1
|
* update project homepageJeremy Lainé2014-03-281-1/+1
|
* update project homepageJeremy Lainé2014-03-271-1/+1
|
* update copyright notice to 2008-2014Jeremy Lainé2014-03-261-1/+1
|
* Update self nick only if the nick change is successful.0xd34df00d2013-03-121-6/+12
|
* Use room jid instead of user jid in invitations.0xd34df00d2012-09-121-1/+1
| | | | | Otherwise the invitee got invited into a "room" with a jid equal to his one.
* Add XEP-0045: Multi-User Chat attributes to QXmppPresence.Jeremy Lainé2012-09-121-19/+7
|
* prune dead codeJeremy Lainé2012-09-121-6/+0
|
* explicitly parse XEP-0249: Direct MUC Invitations message attributesJeremy Lainé2012-09-121-10/+5
|
* Fix QXmppMucRoom::name(), only consider discovery IQs from the room.Jeremy Lainé2012-09-061-9/+11
|
* protect against the case where the user has removed the disco managerJeremy Lainé2012-09-051-3/+5
|
* Add QXmppMucRoom::name() to get the room's human-readable name.Jeremy Lainé2012-09-051-1/+39
|
* clarify JID formatsJeremy Lainé2012-09-051-1/+3
|
* QXmppMucRoom::ban() should only accept bare JIDsJeremy Lainé2012-09-051-14/+5
|
* Add QXmppMucRoom::participantFullJid() to lookup an occupant full JID.Jeremy Lainé2012-09-051-2/+13
|
* Add QXmppMucRoom::ban() slot to ban users.Jeremy Lainé2012-09-051-0/+35
|
* doc fixesJeremy Lainé2012-07-211-12/+14
|
* use QXmppClient::setStatusTextJeremy Lainé2012-07-211-4/+1
|
* update copyright yearJeremy Lainé2012-07-181-1/+1
|
* make QXmppElementList a typedef (thanks Matt)Jeremy Lainé2012-04-231-2/+2
|
* encapsulate QXmppUtils methods in a QXmppUtils classJeremy Lainé2012-04-201-3/+3
|
* Advertise support for XEP-0249: Direct MUC InvitationsJeremy Lainé2012-04-161-1/+2
|
* start moving client-specific codeJeremy Lainé2012-02-081-0/+661