diff options
| author | Kris De Gussem <kris.degussem@gmail.com> | 2013-01-23 21:21:28 +0000 |
|---|---|---|
| committer | Kris <Kris.De.Gussem@hotmail.com> | 2013-01-23 21:21:28 +0000 |
| commit | 70467baaabf4efc3f76297058a358c04212419c2 (patch) | |
| tree | 727782add478ac2a74610ebaed398ae17e6398c4 /src/extension/execution-env.cpp | |
| parent | fix Memory leak in bitmap trace (Bug #996695) (diff) | |
| download | inkscape-70467baaabf4efc3f76297058a358c04212419c2.tar.gz inkscape-70467baaabf4efc3f76297058a358c04212419c2.zip | |
revert my revision 12053 (Bug #1103248 )
(bzr r12058)
Diffstat (limited to 'src/extension/execution-env.cpp')
| -rw-r--r-- | src/extension/execution-env.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extension/execution-env.cpp b/src/extension/execution-env.cpp index 78129cbc5..4058fd787 100644 --- a/src/extension/execution-env.cpp +++ b/src/extension/execution-env.cpp @@ -195,7 +195,7 @@ ExecutionEnv::reselect (void) { Inkscape::Selection * selection = sp_desktop_selection(desktop); for (std::list<Glib::ustring>::iterator i = _selected.begin(); i != _selected.end(); ++i) { - SPObject * obj = doc->getObjectById(*i); + SPObject * obj = doc->getObjectById(i->c_str()); if (obj != NULL) { selection->add(obj); } |
