From fd172477944cf31339b20fb8d94b6a7bc31fcc86 Mon Sep 17 00:00:00 2001 From: "Juergen E. Fischer" Date: Sat, 16 Jun 2012 12:16:58 +0200 Subject: [PATCH] fix #5494 --- src/gui/qgsprojectionselector.cpp | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/gui/qgsprojectionselector.cpp b/src/gui/qgsprojectionselector.cpp index 5d436acd5e1..c652ef15bd6 100644 --- a/src/gui/qgsprojectionselector.cpp +++ b/src/gui/qgsprojectionselector.cpp @@ -802,14 +802,18 @@ void QgsProjectionSelector::on_cbxHideDeprecated_stateChanged() void QgsProjectionSelector::on_leSearch_textChanged( const QString & theFilterTxt ) { + QString filterTxt = theFilterTxt; + filterTxt.replace( QRegExp( "\\s+" ), ".*" ); + QRegExp re( filterTxt, Qt::CaseInsensitive ); + // filter recent crs's QTreeWidgetItemIterator itr( lstRecent ); while ( *itr ) { if (( *itr )->childCount() == 0 ) // it's an end node aka a projection { - if (( *itr )->text( NAME_COLUMN ).contains( theFilterTxt, Qt::CaseInsensitive ) - || ( *itr )->text( AUTHID_COLUMN ).contains( theFilterTxt, Qt::CaseInsensitive ) + if (( *itr )->text( NAME_COLUMN ).contains( re ) + || ( *itr )->text( AUTHID_COLUMN ).contains( re ) ) { ( *itr )->setHidden( false ); @@ -839,8 +843,8 @@ void QgsProjectionSelector::on_leSearch_textChanged( const QString & theFilterTx { if (( *it )->childCount() == 0 ) // it's an end node aka a projection { - if (( *it )->text( NAME_COLUMN ).contains( theFilterTxt, Qt::CaseInsensitive ) - || ( *it )->text( AUTHID_COLUMN ).contains( theFilterTxt, Qt::CaseInsensitive ) + if (( *it )->text( NAME_COLUMN ).contains( re ) + || ( *it )->text( AUTHID_COLUMN ).contains( re ) ) { ( *it )->setHidden( false );