diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-11-08 18:54:01 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-11-08 18:54:01 +0100 |
commit | af452fda333da53132a4301c372c321798be9cae (patch) | |
tree | 579e753aaedfd0c1904c4d7ba7d8cdd86aaa9184 /basic/source | |
parent | cab7e3037c200a9d621d7ede015c9426556194dc (diff) |
fix more warning C4804 unsafe use of type bool
... from commit bbf1bcd9ad9cc0368aef4a4de41e9538f6ad91b0
Change-Id: Ic8e52f6848e09a274133f2d8fd1c4044cae4b039
Diffstat (limited to 'basic/source')
-rw-r--r-- | basic/source/basmgr/basmgr.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/basmgr/basmgr.cxx b/basic/source/basmgr/basmgr.cxx index d177d73a3647..14ffe0902826 100644 --- a/basic/source/basmgr/basmgr.cxx +++ b/basic/source/basmgr/basmgr.cxx @@ -1243,7 +1243,7 @@ StarBASIC* BasicManager::AddLib( SotStorage& rStorage, const OUString& rLibName, DBG_ASSERT( !aStorName.isEmpty(), "No Storage Name!" ); OUString aStorageName = INetURLObject(aStorName, INET_PROT_FILE).GetMainURL( INetURLObject::NO_DECODE ); - DBG_ASSERT(!aStorageName.isEmpty() != 0, "Bad storage name"); + DBG_ASSERT(!aStorageName.isEmpty(), "Bad storage name"); OUString aNewLibName( rLibName ); while ( HasLib( aNewLibName ) ) |