diff options
author | Herbert Dürr <hdu@apache.org> | 2014-02-04 08:48:47 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-04 12:47:59 +0000 |
commit | a5090ccf756aac2365fd52d7cf9b423f54c5c6f6 (patch) | |
tree | eec6b5c4c2263c2a0cf7eac96d8cf9a066367bb8 /binaryurp | |
parent | 3f4a461c57e5d07b7d0a03befe8f264fcd2ca8f7 (diff) |
Related: #i123862# use O*String's isEmpty() method...
to check for emptiness in modules starting with 'b'
Patch-by: j.nitschke@ok.de
Review-by: hdu@apache.org
(cherry picked from commit 87204b0f4062ef8fc8f138ad15f4378da609d4e2)
Conflicts:
basctl/source/basicide/baside2.cxx
basctl/source/basicide/bastype2.cxx
basctl/source/basicide/localizationmgr.cxx
basctl/source/dlged/dlgedobj.cxx
basic/source/basmgr/basmgr.cxx
basic/source/basmgr/vbahelper.cxx
basic/source/classes/sbunoobj.cxx
basic/source/comp/sbcomp.cxx
basic/source/runtime/iosys.cxx
basic/source/runtime/methods.cxx
basic/source/runtime/methods1.cxx
basic/source/runtime/step2.cxx
basic/source/uno/namecont.cxx
basic/source/uno/scriptcont.cxx
binaryurp/source/bridge.cxx
binaryurp/source/bridgefactory.cxx
binaryurp/source/reader.cxx
binaryurp/source/unmarshal.cxx
bridges/source/cpp_uno/cc50_solaris_intel/except.cxx
bridges/source/cpp_uno/cc50_solaris_sparc/except.cxx
bridges/source/cpp_uno/shared/vtablefactory.cxx
bridges/source/jni_uno/jni_data.cxx
Change-Id: I37bd84e0a1d6426759dba81854faf32c88147fe1
Diffstat (limited to 'binaryurp')
-rw-r--r-- | binaryurp/source/marshal.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binaryurp/source/marshal.cxx b/binaryurp/source/marshal.cxx index 476fb19b13aa..241c2be3fda8 100644 --- a/binaryurp/source/marshal.cxx +++ b/binaryurp/source/marshal.cxx @@ -154,7 +154,7 @@ void Marshal::writeOid( { bool found; sal_uInt16 idx; - if (oid.getLength() == 0) { + if ( oid.isEmpty() ) { found = true; idx = cache::ignore; } else { |