summaryrefslogtreecommitdiff
path: root/TelepathyQt4Yell
diff options
context:
space:
mode:
authorMateu Batle <mateu.batle@collabora.co.uk>2011-04-29 07:24:25 -0500
committerMateu Batle <mateu.batle@collabora.co.uk>2011-04-29 08:51:33 -0500
commitd39c1b0dd67cdbb662414a5b9024932196a2ec23 (patch)
treeed369d88d1d9458f295bab8fc7ad1fc0a4799c6c /TelepathyQt4Yell
parent1349302b2236e0bced37d0df69c3a18e34cdd1ad (diff)
Added missing spaces to follow style guide
Diffstat (limited to 'TelepathyQt4Yell')
-rw-r--r--TelepathyQt4Yell/Models/abstract-conversation-model.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TelepathyQt4Yell/Models/abstract-conversation-model.cpp b/TelepathyQt4Yell/Models/abstract-conversation-model.cpp
index f03726e..7542ed9 100644
--- a/TelepathyQt4Yell/Models/abstract-conversation-model.cpp
+++ b/TelepathyQt4Yell/Models/abstract-conversation-model.cpp
@@ -245,7 +245,7 @@ void AbstractConversationModel::insertItems(QList<const EventItem *> items, int
beginInsertRows(QModelIndex(), index, index + items.count() - 1);
const Tpy::EventItem *item;
int i = 0;
- foreach(item, items) {
+ foreach (item, items) {
mPriv->mItems.insert(index + i++, item);
}
endInsertRows();
@@ -255,7 +255,7 @@ bool AbstractConversationModel::removeRows(int row, int count, const QModelIndex
{
if (row >= 0 && (row + count) <= mPriv->mItems.count()) {
beginRemoveRows(parent, row, row + count - 1);
- while(count-- >= 0) {
+ while (count-- >= 0) {
mPriv->mItems.removeAt(row);
}
endRemoveRows();