aboutsummaryrefslogtreecommitdiff
path: root/src/SVG/SVG2zinc.pm
diff options
context:
space:
mode:
authorsaal2007-06-05 08:36:47 +0000
committersaal2007-06-05 08:36:47 +0000
commit676c765bdb6a5d4844d11806bdc86f2a38f7047e (patch)
treea1f2a8f221ba08b5f5ecb330775ec5ba4eeffba0 /src/SVG/SVG2zinc.pm
parenta23de8ad848853f772e934c9df7ece9ad2226ee8 (diff)
downloadmtc-676c765bdb6a5d4844d11806bdc86f2a38f7047e.zip
mtc-676c765bdb6a5d4844d11806bdc86f2a38f7047e.tar.gz
mtc-676c765bdb6a5d4844d11806bdc86f2a38f7047e.tar.bz2
mtc-676c765bdb6a5d4844d11806bdc86f2a38f7047e.tar.xz
suppression de warning
Diffstat (limited to 'src/SVG/SVG2zinc.pm')
-rw-r--r--src/SVG/SVG2zinc.pm8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/SVG/SVG2zinc.pm b/src/SVG/SVG2zinc.pm
index 31e4559..fb82c2b 100644
--- a/src/SVG/SVG2zinc.pm
+++ b/src/SVG/SVG2zinc.pm
@@ -1416,9 +1416,11 @@ sub polygon_ {
sub path {
my ($parser, $elementname, %attrs) = @_;
push (@nameStack, $attrs{id});
- if($attrs{id} eq $targetName)
- {
- $includeFollowingItems = 1;
+ if (defined $attrs{id}) {
+ if($attrs{id} eq $targetName)
+ {
+ $includeFollowingItems = 1;
+ }
}
if( !$includeFollowingItems )
{