X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Faboutdata.h;fp=src%2Fuisupport%2Faboutdata.h;h=00cb14e34fa52220e480442f0da6fda8e2c0deaf;hp=072bcb7d86df79955def1fe85a9d40923957457c;hb=c1cf157116de7fc3da96203aa6f03c38c7ebb650;hpb=30b159cb876a9495de42e9a3e70ca050516f0805 diff --git a/src/uisupport/aboutdata.h b/src/uisupport/aboutdata.h index 072bcb7d..00cb14e3 100644 --- a/src/uisupport/aboutdata.h +++ b/src/uisupport/aboutdata.h @@ -27,10 +27,9 @@ #include #ifdef HAVE_KF5 -# include +# include #endif - /** * Represents a contributor or author for Quassel. * @@ -93,14 +92,13 @@ public: QString prettyName() const; private: - QString _name; ///< The person's name - QString _nick; ///< The person's nick - QString _task; ///< The person's task - QString _emailAddress; ///< The person's email address - QLocale::Language _language; ///< The language the person helps translate + QString _name; ///< The person's name + QString _nick; ///< The person's nick + QString _task; ///< The person's task + QString _emailAddress; ///< The person's email address + QLocale::Language _language; ///< The language the person helps translate }; - /** * Holds a list of authors, contributors and translators. * @@ -117,7 +115,7 @@ public: * * @param[in] parent The parent object, if applicable */ - AboutData(QObject *parent = nullptr); + AboutData(QObject* parent = nullptr); /** * Adds an author to the list of contributors. @@ -127,7 +125,7 @@ public: * @param[in] author The author to add * @returns A reference to this AboutData instance */ - AboutData &addAuthor(const AboutPerson &author); + AboutData& addAuthor(const AboutPerson& author); /** * Adds a list of authors to the list of contributors. @@ -138,7 +136,7 @@ public: * @param[in] authors A list of authors to add * @returns A reference to this AboutData instance */ - AboutData &addAuthors(std::initializer_list authors); + AboutData& addAuthors(std::initializer_list authors); /** * Adds a contributor. @@ -146,7 +144,7 @@ public: * @param[in] author The contributor to add * @returns A reference to this AboutData instance */ - AboutData &addCredit(const AboutPerson &credit); + AboutData& addCredit(const AboutPerson& credit); /** * Adds a list of contributors. @@ -157,7 +155,7 @@ public: * @param[in] authors A list of contributors to add * @returns A reference to this AboutData instance */ - AboutData &addCredits(std::initializer_list credits); + AboutData& addCredits(std::initializer_list credits); /** * Gets the list of authors stored in this AboutData instance. @@ -190,7 +188,7 @@ public: * * @param[in,out] aboutData An existing AboutData instance to add Quassel's contributors to */ - static void setQuasselPersons(AboutData *aboutData); + static void setQuasselPersons(AboutData* aboutData); private: QList _authors; ///< The list of authors