Fix typo in variable name.
authorStephen Kelly <stephen.kelly@kdab.com>
Tue, 25 Sep 2012 15:34:27 +0000 (17:34 +0200)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Thu, 27 Sep 2012 00:29:09 +0000 (02:29 +0200)
Change-Id: I3bd59982605d242c95278bfeb71a6071ec222d08
Reviewed-by: David Faure <faure@kde.org>
Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
src/corelib/itemmodels/qsortfilterproxymodel.cpp

index f9cacde..a0120d0 100644 (file)
@@ -457,9 +457,9 @@ bool QSortFilterProxyModelPrivate::update_source_sort_column()
 {
     Q_Q(QSortFilterProxyModel);
     QModelIndex proxy_index = q->index(0, proxy_sort_column, QModelIndex());
-    int old_source_sort_colum = source_sort_column;
+    int old_source_sort_column = source_sort_column;
     source_sort_column = q->mapToSource(proxy_index).column();
-    return old_source_sort_colum != source_sort_column;
+    return old_source_sort_column != source_sort_column;
 }