summaryrefslogtreecommitdiffstats
path: root/connectivity
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2012-06-02 15:12:18 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2012-06-02 16:48:34 -0500
commit0aca9731819acdc5e0369aef0c86725d939c4f5c (patch)
tree0a5bf2ecd061d4d4aaa8421a22b21bd7dfb90271 /connectivity
parenttargeted string re-work (diff)
downloadcore-0aca9731819acdc5e0369aef0c86725d939c4f5c.tar.gz
core-0aca9731819acdc5e0369aef0c86725d939c4f5c.zip
targeted string re-work
Change-Id: I588fadc51fec90b3b04d61c2c63880236c535183
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/commontools/dbexception.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/commontools/dbexception.cxx b/connectivity/source/commontools/dbexception.cxx
index 37fbb2a62180..9ca90e37a168 100644
--- a/connectivity/source/commontools/dbexception.cxx
+++ b/connectivity/source/commontools/dbexception.cxx
@@ -219,7 +219,7 @@ void SQLExceptionInfo::prepend( const ::rtl::OUString& _rErrorMessage, const sal
SQLException aException;
aException.Message = _rErrorMessage;
aException.ErrorCode = _nErrorCode;
- aException.SQLState = _pAsciiSQLState ? ::rtl::OUString::createFromAscii( _pAsciiSQLState ) : ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "S1000" ));
+ aException.SQLState = _pAsciiSQLState ? ::rtl::OUString::createFromAscii( _pAsciiSQLState ) : ::rtl::OUString("S1000" );
aException.NextException = m_aContent;
m_aContent <<= aException;