diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2007-11-17 01:44:59 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2007-11-17 01:44:59 +0000 |
| commit | 2da1c6d283b560c7405a89cfc368ea6a554a68a7 (patch) | |
| tree | a146e9f0b325dfdca9de28d6730d645bc70db3d7 /src/live_effects/effect.cpp | |
| parent | hopefully fix compile (#include <errno.h> (diff) | |
| download | inkscape-2da1c6d283b560c7405a89cfc368ea6a554a68a7.tar.gz inkscape-2da1c6d283b560c7405a89cfc368ea6a554a68a7.zip | |
2geom tryout: new exceptions
(bzr r4094)
Diffstat (limited to 'src/live_effects/effect.cpp')
| -rw-r--r-- | src/live_effects/effect.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp index f87e365bc..4ccfa5952 100644 --- a/src/live_effects/effect.cpp +++ b/src/live_effects/effect.cpp @@ -145,9 +145,9 @@ Effect::doEffect_nartbpath (NArtBpath * path_in) return new_bpath; } catch (std::exception e) { - g_warning("An exception occurred during execution of an LPE - %s", e.what()); + g_warning("Exception during LPE %s execution. \n %s", getName().c_str(), e.what()); SP_ACTIVE_DESKTOP->messageStack()->flash( Inkscape::WARNING_MESSAGE, - _("An exception occurred during execution of a Path Effect.") ); + _("An exception occurred during execution of the Path Effect.") ); NArtBpath *path_out; |
