diff options
author | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-01-16 15:46:57 -0200 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-01-16 18:49:04 -0200 |
commit | 81e50fb2e378120d05f7ffdee216ce6e248e189b (patch) | |
tree | 0fa6f4779bb3b4970e4720bef4ac36c90514b45c /tools/inc | |
parent | 69d91300547f6ed45a9a499ffae71c2c0f91c441 (diff) |
Fix for fdo43460 Part XXXIX getLength() to isEmpty()
Part XXXIX
Modules
testtools, toolkit, tools
Diffstat (limited to 'tools/inc')
-rw-r--r-- | tools/inc/tools/diagnose_ex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/inc/tools/diagnose_ex.h b/tools/inc/tools/diagnose_ex.h index 21463a66b427..f3aecf4f9822 100644 --- a/tools/inc/tools/diagnose_ex.h +++ b/tools/inc/tools/diagnose_ex.h @@ -64,7 +64,7 @@ sMessage += ::rtl::OUStringToOString( caught.getValueTypeName(), osl_getThreadTextEncoding() ); \ ::com::sun::star::uno::Exception exception; \ caught >>= exception; \ - if ( exception.Message.getLength() ) \ + if ( !exception.Message.isEmpty() ) \ { \ sMessage += "\nmessage: "; \ sMessage += ::rtl::OUStringToOString( exception.Message, osl_getThreadTextEncoding() ); \ |