diff options
author | Timothy Pearson <[email protected]> | 2013-02-10 13:25:19 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-10 13:25:19 -0600 |
commit | 3f7ea5f74f514fa9081949a4ee62485782ade4f1 (patch) | |
tree | f1cb77fefe94d3b66e9f143d044df66e065f80b9 /kalyptus/kalyptusCxxToJNI.pm | |
parent | bb390021da1f0d88086f676c1a7685c26706a4fd (diff) | |
download | libtqt-perl-3f7ea5f74f514fa9081949a4ee62485782ade4f1.tar.gz libtqt-perl-3f7ea5f74f514fa9081949a4ee62485782ade4f1.zip |
Fix FTBFS
Diffstat (limited to 'kalyptus/kalyptusCxxToJNI.pm')
-rw-r--r-- | kalyptus/kalyptusCxxToJNI.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kalyptus/kalyptusCxxToJNI.pm b/kalyptus/kalyptusCxxToJNI.pm index c8afcc3..65f1db6 100644 --- a/kalyptus/kalyptusCxxToJNI.pm +++ b/kalyptus/kalyptusCxxToJNI.pm @@ -2554,8 +2554,8 @@ sub preParseClass || ($classNode->{astNodeName} eq 'TDEGlobalAccel' and $name eq 'setEnabled') || ($classNode->{astNodeName} eq 'KCharsets' and $name eq 'encodingsForLanguage') || ($classNode->{astNodeName} eq 'KInputDialog' and $name eq 'getInteger') - || ($classNode->{astNodeName} eq 'KIO' and $name eq 'buildHTMLErrorString') - || ($classNode->{astNodeName} eq 'KIO' and $name eq 'calculateRemainingSeconds') + || ($classNode->{astNodeName} eq 'TDEIO' and $name eq 'buildHTMLErrorString') + || ($classNode->{astNodeName} eq 'TDEIO' and $name eq 'calculateRemainingSeconds') || ($classNode->{astNodeName} eq 'SlaveBase' and $name eq 'checkCachedAuthentication') || ($classNode->{astNodeName} eq 'SlaveBase' and $name eq 'cacheAuthentication') || ($classNode->{astNodeName} eq 'KInputDialog' and $name eq 'getDouble') @@ -3111,7 +3111,7 @@ sub writeClassDoc print JNISOURCE "#include <kdejava/$javaClassName" . ".h>\n"; } - if ($javaClassName eq 'KIO') { + if ($javaClassName eq 'TDEIO') { # Hack: namespaces can be defined in several source files, which doesn't work, so this.. print JNISOURCE "#include <tdeio/job.h>\n"; print JNISOURCE "#include <tdeio/davjob.h>\n"; |