diff options
author | François Andriot <francois.andriot@free.fr> | 2015-12-06 16:02:21 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2015-12-23 02:23:05 +0100 |
commit | a6ec8c20eb496b20818a285a4ea5291c25403835 (patch) | |
tree | acbb3dce9407593551a049dd117349b63bb55c67 /dcop | |
parent | 294f15f367514f1071319458da8ce1c49984fa0e (diff) | |
download | tdelibs-a6ec8c20eb496b20818a285a4ea5291c25403835.tar.gz tdelibs-a6ec8c20eb496b20818a285a4ea5291c25403835.zip |
Fix invalid perl syntax in kdocAstUtil.pm
This resolves Bug 2543
Signed-off-by: François Andriot <francois.andriot@free.fr>
(cherry picked from commit 7be2f6784dcb70a494fc9eb98da68cf10f8a6edb)
Diffstat (limited to 'dcop')
-rw-r--r-- | dcop/dcopidlng/kdocAstUtil.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dcop/dcopidlng/kdocAstUtil.pm b/dcop/dcopidlng/kdocAstUtil.pm index ec67ace5f..f31f2b365 100644 --- a/dcop/dcopidlng/kdocAstUtil.pm +++ b/dcop/dcopidlng/kdocAstUtil.pm @@ -439,7 +439,7 @@ sub dumpAst } print "\t" x $depth, "Documentation nodes:\n" if defined - @{ $node->{Doc}->{ "Text" }}; + $node->{Doc}->{ "Text" }; foreach $kid ( @{ $node->{Doc}->{ "Text" }} ) { dumpAst( $kid ); |