- Refactor: score and course UI widget management into common files
[scorecard] / src / list-model.cpp
index 5c3e8be..7db6434 100644 (file)
@@ -109,7 +109,7 @@ void CourseListModel::updateList()
         QListIterator<Course *> j(courseList);
         while (j.hasNext()) {
             Course *course = j.next();
-            QString *str = new QString(club->getName() + "," + course->getName());
+            QString *str = new QString(club->getName() + ", " + course->getName());
             clubAndCourseList << str;
         }
     }