diff options
| author | Kris De Gussem <kris.degussem@gmail.com> | 2012-10-02 20:49:30 +0000 |
|---|---|---|
| committer | Kris <Kris.De.Gussem@hotmail.com> | 2012-10-02 20:49:30 +0000 |
| commit | e6e9360b628bb6ba052c65a73a167fe8329f3305 (patch) | |
| tree | 76eee40d03a376ad3ddeaeeceac64fd3e5d47aa9 /src/document-subset.cpp | |
| parent | fix for bug 310206: although the path is made with only cubic beziers (bezier... (diff) | |
| download | inkscape-e6e9360b628bb6ba052c65a73a167fe8329f3305.tar.gz inkscape-e6e9360b628bb6ba052c65a73a167fe8329f3305.zip | |
Fix for Bug #1049440 (Crash in Object Properties if label is empty string (regression, trunk))
(bzr r11724)
Diffstat (limited to 'src/document-subset.cpp')
| -rw-r--r-- | src/document-subset.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/document-subset.cpp b/src/document-subset.cpp index 365be64ef..7fad73d9e 100644 --- a/src/document-subset.cpp +++ b/src/document-subset.cpp @@ -99,7 +99,7 @@ struct DocumentSubset::Relations : public GC::Managed<GC::ATOMIC>, Siblings new_children; bool found_one=false; for ( Siblings::iterator iter=children.begin() - ; iter != children.end() ; iter++ ) + ; iter != children.end() ; ++iter ) { if (obj->isAncestorOf(*iter)) { if (!found_one) { |
