summaryrefslogtreecommitdiffstats
path: root/scripts/xmi2qt.pl
diff options
context:
space:
mode:
authorSandro S. Andrade <sandroandrade@kde.org>2012-09-28 03:53:46 +0000
committerSandro S. Andrade <sandroandrade@kde.org>2012-09-28 05:55:09 +0200
commit1f594a49a52f8119b47411e4dcd68ab37cf48e87 (patch)
treeabc298558ed24ba68e967c006be6229f80e467a9 /scripts/xmi2qt.pl
parentc943656a939c747e0d82e3bcc8c844633704fc3e (diff)
Second bunch of general refactoring in xmi2qt.xq
Change-Id: I2e082bf0b25163d41cf4f6e1ef3424cae513cd1e Reviewed-by: Sandro S. Andrade <sandroandrade@kde.org>
Diffstat (limited to 'scripts/xmi2qt.pl')
-rwxr-xr-xscripts/xmi2qt.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/xmi2qt.pl b/scripts/xmi2qt.pl
index b448a52f..0c7cd014 100755
--- a/scripts/xmi2qt.pl
+++ b/scripts/xmi2qt.pl
@@ -12,7 +12,7 @@ use Getopt::Std;
my %options=();
getopt("oi",\%options);
-my $xml = new XML::Simple(keyattr => { 'class' => '+name' }, forcearray => ['namespace', 'class', 'enumeration', 'attribute', 'associationend', 'operation', 'accessor', 'parameter']);
+my $xml = new XML::Simple(keyattr => { 'class' => '+name' }, forcearray => ['namespace', 'class', 'enumeration', 'attribute', 'associationend', 'operation', 'accessor', 'parameter', 'forwarddecl']);
my $tt = Template->new(INTERPOLATE => 1, INCLUDE_PATH => 'templates/');
my $xmi = $xml->XMLin($options{i});