summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TelepathyQt4Yell/Models/abstract-conversation-model.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/TelepathyQt4Yell/Models/abstract-conversation-model.h b/TelepathyQt4Yell/Models/abstract-conversation-model.h
index 8bbb5f9..f399114 100644
--- a/TelepathyQt4Yell/Models/abstract-conversation-model.h
+++ b/TelepathyQt4Yell/Models/abstract-conversation-model.h
@@ -58,16 +58,16 @@ public:
virtual int rowCount(const QModelIndex &parent = QModelIndex()) const;
virtual QVariant data(const QModelIndex &index, int role) const;
-protected:
- // work around moc namespace limitations
- typedef Tp::ChannelChatState ChannelChatState;
-
void addItem(const ConversationItem *item);
void insertItems(QList<const ConversationItem *> items, int index = 0);
bool deleteItem(const ConversationItem *item);
QModelIndex index(const ConversationItem *item) const;
+protected:
+ // work around moc namespace limitations
+ typedef Tp::ChannelChatState ChannelChatState;
+
private:
struct Private;
friend struct Private;