diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-11-28 22:40:26 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-11-28 22:41:54 +0200 |
commit | 064ef013dc4498b6a546b153d22c5711bc29bde3 (patch) | |
tree | c06f747831a3543ee7f3848a3910becb0637e8e7 /dbaccess/source/ui/uno/copytablewizard.cxx | |
parent | 07ab53c03ffdaca1851ad6d9d1353edf4478c938 (diff) |
OUString::replaceAt() does not modify in-place
Change-Id: I59ebf6dc5bc75f8ded82b19dbc736a6aae48e74b
Diffstat (limited to 'dbaccess/source/ui/uno/copytablewizard.cxx')
-rw-r--r-- | dbaccess/source/ui/uno/copytablewizard.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/uno/copytablewizard.cxx b/dbaccess/source/ui/uno/copytablewizard.cxx index bc5804f57b7f..e06f91e1f1a2 100644 --- a/dbaccess/source/ui/uno/copytablewizard.cxx +++ b/dbaccess/source/ui/uno/copytablewizard.cxx @@ -1351,8 +1351,8 @@ void CopyTableWizard::impl_copyRows_throw( const Reference< XResultSet >& _rxSou { ::rtl::OUString aMessage( String( ModuleRes( STR_CTW_UNSUPPORTED_COLUMN_TYPE ) ) ); - aMessage.replaceAt( aMessage.indexOfAsciiL( "$type$", 6 ), 6, ::rtl::OUString::valueOf( aSourceColTypes[ nSourceColumn ] ) ); - aMessage.replaceAt( aMessage.indexOfAsciiL( "$pos$", 5 ), 5, ::rtl::OUString::valueOf( nSourceColumn ) ); + aMessage = aMessage.replaceAt( aMessage.indexOfAsciiL( "$type$", 6 ), 6, ::rtl::OUString::valueOf( aSourceColTypes[ nSourceColumn ] ) ); + aMessage = aMessage.replaceAt( aMessage.indexOfAsciiL( "$pos$", 5 ), 5, ::rtl::OUString::valueOf( nSourceColumn ) ); ::dbtools::throwSQLException( aMessage, |