Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed isModified()
  • Loading branch information
wonder-sk committed Dec 20, 2012
1 parent 648bcc0 commit 5ea42f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsvectorlayereditbuffer.cpp
Expand Up @@ -20,7 +20,7 @@ QgsVectorLayerEditBuffer::~QgsVectorLayerEditBuffer()

bool QgsVectorLayerEditBuffer::isModified() const
{
return L->undoStack()->isClean(); // TODO[MD]: test
return !L->undoStack()->isClean();
}


Expand Down

0 comments on commit 5ea42f7

Please sign in to comment.