Skip to content

Commit

Permalink
Fix for ticket #412 (expanding of identify list results had stopped w…
Browse files Browse the repository at this point in the history
…orking)

git-svn-id: http://svn.osgeo.org/qgis/trunk@6156 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Nov 30, 2006
1 parent c13ed7a commit 6ad7db4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/gui/qgsidentifyresults.cpp
Expand Up @@ -248,10 +248,10 @@ void QgsIdentifyResults::popupItemSelected(QAction* menuAction)
}

/** Expand all the identified features (show their attributes). */
void QgsIdentifyResults::showAllAttributes() {
QTreeWidgetItemIterator qlvii(lstResults);
for ( ; *qlvii; ++qlvii)
lstResults->setItemExpanded(*qlvii, true);
void QgsIdentifyResults::showAllAttributes()
{
// Easy now with Qt 4.2...
lstResults->expandAll();
}

void QgsIdentifyResults::expandColumnsToFit()
Expand Down

0 comments on commit 6ad7db4

Please sign in to comment.