diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-21 17:19:40 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-21 18:24:03 +0100 |
commit | 6cccf0f388e20408668e57d1931aba5c46d18185 (patch) | |
tree | 10f92279c7b89998f5554abb7fc97616a1c0ebcb /basic/source | |
parent | 101e5cc49c413bede477c0f44b2256e087f7db8c (diff) |
bool improvements
Change-Id: I64288207adb083e006b4acc5e7f26d647236a443
Diffstat (limited to 'basic/source')
-rw-r--r-- | basic/source/uno/dlgcont.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/uno/dlgcont.cxx b/basic/source/uno/dlgcont.cxx index 1190f2d0bc22..5af135fe88fa 100644 --- a/basic/source/uno/dlgcont.cxx +++ b/basic/source/uno/dlgcont.cxx @@ -169,7 +169,7 @@ void SAL_CALL SfxDialogLibraryContainer::writeLibraryElement bComplete = writeOasis2OOoLibraryElement( xInput, xOutput ); } - if ( bComplete == sal_False ) + if ( !bComplete ) { Sequence< sal_Int8 > bytes; sal_Int32 nRead = xInput->readBytes( bytes, xInput->available() ); |