diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-03-04 06:18:42 +0000 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-03-04 06:18:42 +0000 |
| commit | 004833626f7e3838cd9534878d8ae6ce34bf5b9c (patch) | |
| tree | a1e3f62c575137561830dc536ddfda12371bc956 /source/QXmppArchiveIq.h | |
| parent | 801a435be9e271226d3c53b6eb36fb506b9faa9d (diff) | |
| download | qxmpp-004833626f7e3838cd9534878d8ae6ce34bf5b9c.tar.gz | |
internal API cleanup : remove "get" from QXmppArchiveIq accessors
Diffstat (limited to 'source/QXmppArchiveIq.h')
| -rw-r--r-- | source/QXmppArchiveIq.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/source/QXmppArchiveIq.h b/source/QXmppArchiveIq.h index fabdebc7..5de5563a 100644 --- a/source/QXmppArchiveIq.h +++ b/source/QXmppArchiveIq.h @@ -56,7 +56,7 @@ public: void parse( QDomElement &element ); static bool isArchiveChatIq( QDomElement &element ); - QXmppArchiveChat getChat() const; + QXmppArchiveChat chat() const; private: QXmppArchiveChat m_chat; @@ -70,18 +70,18 @@ public: void parse( QDomElement &element ); static bool isArchiveListIq( QDomElement &element ); - QList<QXmppArchiveChat> getChats() const; + QList<QXmppArchiveChat> chats() const; - int getMax() const; + int max() const; void setMax(int max); - QString getWith() const; + QString with() const; void setWith( const QString &with ); - QDateTime getStart() const; + QDateTime start() const; void setStart(const QDateTime &start ); - QDateTime getEnd() const; + QDateTime end() const; void setEnd(const QDateTime &end ); private: @@ -98,13 +98,13 @@ public: QXmppArchiveRetrieveIq(); void toXmlElementFromChild(QXmlStreamWriter *writer) const; - int getMax() const; + int max() const; void setMax(int max); - QDateTime getStart() const; + QDateTime start() const; void setStart( const QDateTime &start ); - QString getWith() const; + QString with() const; void setWith( const QString &with ); private: |
