summaryrefslogtreecommitdiff
path: root/unodevtools/source/skeletonmaker/javatypemaker.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unodevtools/source/skeletonmaker/javatypemaker.cxx')
-rw-r--r--unodevtools/source/skeletonmaker/javatypemaker.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/unodevtools/source/skeletonmaker/javatypemaker.cxx b/unodevtools/source/skeletonmaker/javatypemaker.cxx
index ae224078c184..6a192aecfda5 100644
--- a/unodevtools/source/skeletonmaker/javatypemaker.cxx
+++ b/unodevtools/source/skeletonmaker/javatypemaker.cxx
@@ -387,7 +387,7 @@ void printMethods(std::ostream & o,
}
static OString sd(RTL_CONSTASCII_STRINGPARAM("_"));
- bool body = ((delegate.getLength() > 0) ? true : false);
+ bool body = !delegate.isEmpty();
bool defaultbody = ((delegate.equals(sd)) ? true : false);
generated.add(type);
@@ -577,7 +577,7 @@ void printConstructionMethods(std::ostream & o,
options, manager,
codemaker::convertString(reader.getSuperTypeName(0)), false);
o << ' ';
- if ( reader.getMethodName(i).getLength() == 0 ) {
+ if ( reader.getMethodName(i).isEmpty() ) {
o << "create";
} else {
o << (codemaker::java::translateUnoToJavaIdentifier(
@@ -668,7 +668,7 @@ void generateDocumentation(std::ostream & o,
&arguments);
bool comment=true;
- if ( delegate.getLength() > 0 ) {
+ if ( !delegate.isEmpty() ) {
if ( typeClass != RT_TYPE_INTERFACE && typeClass != RT_TYPE_SERVICE )
return;