summaryrefslogtreecommitdiff
path: root/unodevtools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-04-11 09:27:11 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-04-11 09:29:44 +0200
commitfc02ae8f825b9325c3f3d6b690a1bffeb0520253 (patch)
treece1d8a59480232a0e6cc35f1ce60056b0f87e63e /unodevtools
parent358b60b3b172968a7605b428af01df456d7669b2 (diff)
[API CHANGE] WIP: Experimental new binary type.rdb format
Make javamaker work on top of unoidl/ instead of registry/. API CHANGE: javamaker no longer supports the -B switch, as that is meaningless with the new format. When reading from an old-format .rdb file, /UCR is hard- coded as the prefix now. Change-Id: I8cca39f8ebacd0476934f7bd493d206928d063a9
Diffstat (limited to 'unodevtools')
-rw-r--r--unodevtools/source/skeletonmaker/javatypemaker.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/unodevtools/source/skeletonmaker/javatypemaker.cxx b/unodevtools/source/skeletonmaker/javatypemaker.cxx
index 420bf4864a4a..08761ac0778f 100644
--- a/unodevtools/source/skeletonmaker/javatypemaker.cxx
+++ b/unodevtools/source/skeletonmaker/javatypemaker.cxx
@@ -82,7 +82,7 @@ void printType(std::ostream & o,
}
OString sType(codemaker::java::translateUnoToJavaType(
- sort, typeClass, name, referenceType && rank==0).replace('/', '.'));
+ sort, name, referenceType && rank==0).replace('/', '.'));
if ( sType.indexOf("java.lang.") == 0 )
sType = sType.copy(10);
o << sType.getStr();