summaryrefslogtreecommitdiffstats
path: root/scripts/xmi2qt.pl
diff options
context:
space:
mode:
authorSandro S. Andrade <sandroandrade@kde.org>2012-09-28 19:25:21 +0000
committerSandro S. Andrade <sandroandrade@kde.org>2012-09-28 21:26:39 +0200
commit4947dfb60c1bdcb9f6ff88ef46d7c928bf9905dd (patch)
treeb8b2db18d51afd15c6e55564345a48f0851155de /scripts/xmi2qt.pl
parent1f594a49a52f8119b47411e4dcd68ab37cf48e87 (diff)
Handle cross-package and cross-document inheritance
Change-Id: I3d818a5eb209f0b5cae239e4ca3733ab1e329243 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 0c7cd014..41c9c115 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', 'forwarddecl']);
+my $xml = new XML::Simple(keyattr => { 'class' => '+name' }, forcearray => ['namespace', 'class', 'enumeration', 'attribute', 'associationend', 'operation', 'accessor', 'parameter', 'forwarddecl', 'superclass']);
my $tt = Template->new(INTERPOLATE => 1, INCLUDE_PATH => 'templates/');
my $xmi = $xml->XMLin($options{i});