diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-02-17 09:03:36 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-02-17 12:21:36 +0000 |
commit | 99bf0c318b89c7d6acee364161b34b13d348a3bb (patch) | |
tree | 28f9038d04e29553a74aaeb83a15ff0ae5c41a58 /testtools/com | |
parent | 13de41eaaf5291199d1344092c1077e651da3448 (diff) |
add a uno test api with more than 8 floating point args
I'm a cruel person, i.e. this targets the TODO of
dab11f7fe2a2fa4155e4c4feaa5fc54e57cfbd37 in
bridges/source/cpp_uno/gcc3_linux_arm/cpp2uno.cx
Diffstat (limited to 'testtools/com')
-rw-r--r-- | testtools/com/sun/star/comp/bridge/TestComponent.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testtools/com/sun/star/comp/bridge/TestComponent.java b/testtools/com/sun/star/comp/bridge/TestComponent.java index c63ff7fe2293..757139a2ce3c 100644 --- a/testtools/com/sun/star/comp/bridge/TestComponent.java +++ b/testtools/com/sun/star/comp/bridge/TestComponent.java @@ -511,6 +511,10 @@ public class TestComponent { return i2; } + public double testTenDoubles( double d1, double d2, double d3, double d4, double d5, double d6, double d7, double d8, double d9, double d10 ) { + return d1 + d2 + d3 + d4 + d5 + d6 + d7 + d8 + d9 + d10; + } + // Attributes public boolean getBool() throws com.sun.star.uno.RuntimeException { return _bool; |