diff options
author | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-01-31 16:44:12 -0200 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-01-31 19:58:51 -0200 |
commit | 0a112c96fd8077a027dac88510915eb93903748b (patch) | |
tree | 190da82a604c8414687be76ac397ab2de43e84aa /vcl/generic/app | |
parent | 4d83e7010870fb8d74b19c28f1c4cd3fa616f514 (diff) |
Fix for fdo43460 Part LVII getLength() to isEmpty()
Part LVII
Modules
vcl (part 1)
Diffstat (limited to 'vcl/generic/app')
-rw-r--r-- | vcl/generic/app/gensys.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/generic/app/gensys.cxx b/vcl/generic/app/gensys.cxx index ddde4a152fa6..29b39ddd6a1c 100644 --- a/vcl/generic/app/gensys.cxx +++ b/vcl/generic/app/gensys.cxx @@ -163,7 +163,7 @@ const char* SalGenericSystem::getFrameClassName() rtl::Bootstrap aBootstrap( aIni ); aBootstrap.getFrom( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "ProductKey" ) ), aProduct ); - if( aProduct.getLength() ) + if( !aProduct.isEmpty() ) aClassName.append( rtl::OUStringToOString( aProduct, osl_getThreadTextEncoding() ) ); else aClassName.append( "VCLSalFrame" ); |