diff options
Diffstat (limited to 'TelepathyQt/profile.cpp')
-rw-r--r-- | TelepathyQt/profile.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/TelepathyQt/profile.cpp b/TelepathyQt/profile.cpp index a67800f5..073e0cc3 100644 --- a/TelepathyQt/profile.cpp +++ b/TelepathyQt/profile.cpp @@ -104,12 +104,12 @@ public: XmlHandler(const QString &serviceName, bool allowNonIMType, Profile::Private::Data *outputData); bool startElement(const QString &namespaceURI, const QString &localName, - const QString &qName, const QXmlAttributes &attributes); + const QString &qName, const QXmlAttributes &attributes) override; bool endElement(const QString &namespaceURI, const QString &localName, - const QString &qName); - bool characters(const QString &str); - bool fatalError(const QXmlParseException &exception); - QString errorString() const; + const QString &qName) override; + bool characters(const QString &str) override; + bool fatalError(const QXmlParseException &exception) override; + QString errorString() const override; private: bool attributeValueAsBoolean(const QXmlAttributes &attributes, @@ -527,7 +527,7 @@ void Profile::Private::invalidate() * \brief The Profile class provides an easy way to read Telepathy profile * files according to http://telepathy.freedesktop.org/wiki/service-profile-v1. * - * Note that profiles with xml element <type> different than "IM" are considered + * Note that profiles with xml element \<type\> different than "IM" are considered * invalid. */ |