From 450093df85c38ce33fd23049a77750cf48e03976 Mon Sep 17 00:00:00 2001 From: Anton Lundin Date: Fri, 7 Nov 2014 20:16:43 +0100 Subject: [PATCH] Remove leading spaces in buddy tags The buddy list generated by the buddy tag logic gets separated by , so this trims away any leading spaces from the buddy name. Signed-off-by: Anton Lundin Signed-off-by: Dirk Hohndel --- qt-ui/models.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qt-ui/models.cpp b/qt-ui/models.cpp index c48d1e4fc..5732e7043 100644 --- a/qt-ui/models.cpp +++ b/qt-ui/models.cpp @@ -2436,8 +2436,9 @@ void BuddyFilterModel::repopulate() for_each_dive (i, dive) { QString persons = QString(dive->buddy) + "," + QString(dive->divemaster); Q_FOREACH(const QString& person, persons.split(',', QString::SkipEmptyParts)){ - if (!list.contains(person)) { - list.append(person); + // Remove any leading spaces + if (!list.contains(person.trimmed())) { + list.append(person.trimmed()); } } }