Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
added more emit selectionChanged()
git-svn-id: http://svn.osgeo.org/qgis/trunk@4958 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Mar 3, 2006
1 parent aacee0e commit 56b4efb
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 56b4efb

Please sign in to comment.