Skip to content

Commit

Permalink
added more emit selectionChanged()
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@4958 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Mar 3, 2006
1 parent 40842d6 commit 1fe9b59
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/gui/qgsvectorlayer.cpp
Expand Up @@ -1030,6 +1030,7 @@ void QgsVectorLayer::table()
void QgsVectorLayer::select(int number)
{
mSelected.insert(number);
emit selectionChanged();
}

void QgsVectorLayer::select(QgsRect * rect, bool lock)
Expand Down Expand Up @@ -1174,6 +1175,7 @@ void QgsVectorLayer::invertSelection()
void QgsVectorLayer::removeSelection()
{
mSelected.clear();
emit selectionChanged();
}

void QgsVectorLayer::triggerRepaint()
Expand Down

0 comments on commit 1fe9b59

Please sign in to comment.