summaryrefslogtreecommitdiffstats
path: root/kalyptus/kalyptusCxxToJava.pm
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-04 01:04:19 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-04 01:04:19 -0600
commitd59a7b04d29af04de0b5687d9ff458380e30d823 (patch)
treefb435019d0d7e9bfdff6a6570b75ef155b5482be /kalyptus/kalyptusCxxToJava.pm
parent32459311b349db581cc5fb0d80739a95b3d998b4 (diff)
downloadtdebindings-d59a7b04d29af04de0b5687d9ff458380e30d823.tar.gz
tdebindings-d59a7b04d29af04de0b5687d9ff458380e30d823.zip
Fix FTBFS
Diffstat (limited to 'kalyptus/kalyptusCxxToJava.pm')
-rw-r--r--kalyptus/kalyptusCxxToJava.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/kalyptus/kalyptusCxxToJava.pm b/kalyptus/kalyptusCxxToJava.pm
index dcc713e1..641c8e11 100644
--- a/kalyptus/kalyptusCxxToJava.pm
+++ b/kalyptus/kalyptusCxxToJava.pm
@@ -242,7 +242,7 @@ EOF
method = qtjava.class.getDeclaredMethod( "dynamicCast",
new Class[] { String.class, QtSupport.class } );
} catch (NoSuchMethodException e1) {
- Qt.qWarning("No such method : qtjava.dynamicCast()");
+ Qt.tqWarning("No such method : qtjava.dynamicCast()");
}
try {
@@ -250,10 +250,10 @@ EOF
Object result = method.invoke(qtjava.class, new Object[] { type, source } );
return (QtSupport) result;
} catch (InvocationTargetException e) {
- Qt.qWarning("Invocation failed : qtjava.dynamicCast()");
+ Qt.tqWarning("Invocation failed : qtjava.dynamicCast()");
return null;
} catch (IllegalAccessException e) {
- Qt.qWarning("Invocation failed : qtjava.dynamicCast()");
+ Qt.tqWarning("Invocation failed : qtjava.dynamicCast()");
return null;
}
}