summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Timofeev <timofeev.i.s@gmail.com>2011-12-17 16:22:42 +0400
committerIvan Timofeev <timofeev.i.s@gmail.com>2011-12-17 16:36:00 +0400
commitd18daeff771b255207bb30d428540d9ebd28ec32 (patch)
tree530aea3941b772f09bcefc626ee0758bdf933083
parent198a99861e14cf5c001177b1192cebfe4708ea05 (diff)
correct diagnostic message
-rw-r--r--connectivity/source/sdbcx/VCollection.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/sdbcx/VCollection.cxx b/connectivity/source/sdbcx/VCollection.cxx
index 34caa74efa27..66ccb4d92df5 100644
--- a/connectivity/source/sdbcx/VCollection.cxx
+++ b/connectivity/source/sdbcx/VCollection.cxx
@@ -535,7 +535,7 @@ void OCollection::renameObject(const ::rtl::OUString _sOldName,const ::rtl::OUSt
OSL_ENSURE(m_pElements->exists(_sOldName),"Element doesn't exist");
OSL_ENSURE(!m_pElements->exists(_sNewName),"Element already exists");
OSL_ENSURE(!_sNewName.isEmpty(),"New name must not be empty!");
- OSL_ENSURE(!_sOldName.isEmpty(),"New name must not be empty!");
+ OSL_ENSURE(!_sOldName.isEmpty(),"Old name must not be empty!");
if ( m_pElements->rename(_sOldName,_sNewName) )
{