diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2012-02-29 01:15:16 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2012-02-29 01:23:09 +0900 |
commit | a138709519b00b65cf5b530a319ed67ca657a1f4 (patch) | |
tree | 526d2cd8d3279c5e0a2c7494a1c347b5d92be9d9 /ucb | |
parent | 51af20c8b4183fc796f5c9d4be25d3560a20ca3e (diff) |
Drop comparison with empty rtl::OUString
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/file/bc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/file/bc.cxx b/ucb/source/ucp/file/bc.cxx index 38271ac4d90b..4c1c9f04415e 100644 --- a/ucb/source/ucp/file/bc.cxx +++ b/ucb/source/ucp/file/bc.cxx @@ -603,7 +603,7 @@ BaseContent::addProperty( lang::IllegalArgumentException, RuntimeException) { - if( ( m_nState & JustInserted ) || ( m_nState & Deleted ) || Name == rtl::OUString() ) + if( ( m_nState & JustInserted ) || ( m_nState & Deleted ) || Name.isEmpty() ) { throw lang::IllegalArgumentException( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( OSL_LOG_PREFIX ) ), uno::Reference< uno::XInterface >(), 0 ); } |