diff options
author | Miklos Vajna <vmiklos@suse.cz> | 2012-10-23 23:34:59 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2012-10-24 23:03:03 +0200 |
commit | e190307f9a7dd6ad40c83cf71714b3effd231b96 (patch) | |
tree | 9d2c74fc8b2b802f53cd1835ee997c493c81789d /package/source/xstor/oseekinstream.cxx | |
parent | 8be8bcf76de7fcc5c91480583a79a565c7693733 (diff) |
package: kill remaining RTL_CONSTASCII.*PARAM
Change-Id: Ia53ddbfcf68524b7714fe6df447a9dbb1a68bcb7
Diffstat (limited to 'package/source/xstor/oseekinstream.cxx')
-rw-r--r-- | package/source/xstor/oseekinstream.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/package/source/xstor/oseekinstream.cxx b/package/source/xstor/oseekinstream.cxx index 882f6c3a95b3..5f6be02ee23c 100644 --- a/package/source/xstor/oseekinstream.cxx +++ b/package/source/xstor/oseekinstream.cxx @@ -115,13 +115,13 @@ void SAL_CALL OInputSeekStream::seek( sal_Int64 location ) ::osl::MutexGuard aGuard( m_rMutexRef->GetMutex() ); if ( m_bDisposed ) { - ::package::StaticAddLog( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( OSL_LOG_PREFIX "Disposed!" ) ) ); + ::package::StaticAddLog( OSL_LOG_PREFIX "Disposed!" ); throw lang::DisposedException(); } if ( !m_xSeekable.is() ) { - ::package::StaticAddLog( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( OSL_LOG_PREFIX "No seekable!" ) ) ); + ::package::StaticAddLog( OSL_LOG_PREFIX "No seekable!" ); throw uno::RuntimeException(); } @@ -135,13 +135,13 @@ sal_Int64 SAL_CALL OInputSeekStream::getPosition() ::osl::MutexGuard aGuard( m_rMutexRef->GetMutex() ); if ( m_bDisposed ) { - ::package::StaticAddLog( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( OSL_LOG_PREFIX "Disposed!" ) ) ); + ::package::StaticAddLog( OSL_LOG_PREFIX "Disposed!" ); throw lang::DisposedException(); } if ( !m_xSeekable.is() ) { - ::package::StaticAddLog( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( OSL_LOG_PREFIX "No seekable!" ) ) ); + ::package::StaticAddLog( OSL_LOG_PREFIX "No seekable!" ); throw uno::RuntimeException(); } @@ -155,13 +155,13 @@ sal_Int64 SAL_CALL OInputSeekStream::getLength() ::osl::MutexGuard aGuard( m_rMutexRef->GetMutex() ); if ( m_bDisposed ) { - ::package::StaticAddLog( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( OSL_LOG_PREFIX "Disposed!" ) ) ); + ::package::StaticAddLog( OSL_LOG_PREFIX "Disposed!" ); throw lang::DisposedException(); } if ( !m_xSeekable.is() ) { - ::package::StaticAddLog( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( OSL_LOG_PREFIX "No seekable!" ) ) ); + ::package::StaticAddLog( OSL_LOG_PREFIX "No seekable!" ); throw uno::RuntimeException(); } |