summaryrefslogtreecommitdiff
path: root/testtools/com
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2010-12-09 11:19:10 +0000
committerCaolán McNamara <caolanm@redhat.com>2010-12-09 11:19:10 +0000
commit85cc920f24f6f8e580a5f390d8077bb6bccc0ae9 (patch)
tree466ac898fb6c931b65e46d9e93892f169dafaba5 /testtools/com
parentc88463b812319ff5ea8cc5587df0e8cd7b7ad897 (diff)
add a Mixed Float And Integer struct return test
Diffstat (limited to 'testtools/com')
-rw-r--r--testtools/com/sun/star/comp/bridge/TestComponent.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/testtools/com/sun/star/comp/bridge/TestComponent.java b/testtools/com/sun/star/comp/bridge/TestComponent.java
index ed91f4c9cb11..25e3b3a7099a 100644
--- a/testtools/com/sun/star/comp/bridge/TestComponent.java
+++ b/testtools/com/sun/star/comp/bridge/TestComponent.java
@@ -49,6 +49,7 @@ import test.testtools.bridgetest.MediumStruct;
import test.testtools.bridgetest.BigStruct;
import test.testtools.bridgetest.TwoFloats;
import test.testtools.bridgetest.FourFloats;
+import test.testtools.bridgetest.MixedFloatAndInteger;
import test.testtools.bridgetest.XBridgeTest;
import test.testtools.bridgetest.XBridgeTest2;
import test.testtools.bridgetest.XCurrentContextChecker;
@@ -497,6 +498,10 @@ public class TestComponent {
return i_Struct;
}
+ public MixedFloatAndInteger echoMixedFloatAndInteger( MixedFloatAndInteger i_Struct) throws com.sun.star.uno.RuntimeException {
+ return i_Struct;
+ }
+
public int testPPCAlignment( long l1, long l2, int i1, long l3, int i2 ) throws com.sun.star.uno.RuntimeException {
return i2;
}