From 87f25de7c3d3b8bf643d7f318a8a5471eee44411 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Tue, 25 Sep 2012 17:34:27 +0200 Subject: Fix typo in variable name. Change-Id: I3bd59982605d242c95278bfeb71a6071ec222d08 Reviewed-by: David Faure Reviewed-by: Simon Hausmann --- src/corelib/itemmodels/qsortfilterproxymodel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/corelib/itemmodels') diff --git a/src/corelib/itemmodels/qsortfilterproxymodel.cpp b/src/corelib/itemmodels/qsortfilterproxymodel.cpp index f9cacded3f..a0120d068a 100644 --- a/src/corelib/itemmodels/qsortfilterproxymodel.cpp +++ b/src/corelib/itemmodels/qsortfilterproxymodel.cpp @@ -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; } -- cgit v1.2.3