summaryrefslogtreecommitdiff
path: root/package/source/xstor/oseekinstream.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'package/source/xstor/oseekinstream.cxx')
-rw-r--r--package/source/xstor/oseekinstream.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/package/source/xstor/oseekinstream.cxx b/package/source/xstor/oseekinstream.cxx
index 813ff249cf6b..be18fba7f496 100644
--- a/package/source/xstor/oseekinstream.cxx
+++ b/package/source/xstor/oseekinstream.cxx
@@ -114,13 +114,13 @@ void SAL_CALL OInputSeekStream::seek( sal_Int64 location )
::osl::MutexGuard aGuard( m_rMutexRef->GetMutex() );
if ( m_bDisposed )
{
- SAL_INFO("package.xstor", OSL_LOG_PREFIX "Disposed!");
+ SAL_INFO("package.xstor", "Disposed!");
throw lang::DisposedException();
}
if ( !m_xSeekable.is() )
{
- SAL_INFO("package.xstor", OSL_LOG_PREFIX "No seekable!");
+ SAL_INFO("package.xstor", "No seekable!");
throw uno::RuntimeException();
}
@@ -134,13 +134,13 @@ sal_Int64 SAL_CALL OInputSeekStream::getPosition()
::osl::MutexGuard aGuard( m_rMutexRef->GetMutex() );
if ( m_bDisposed )
{
- SAL_INFO("package.xstor", OSL_LOG_PREFIX "Disposed!");
+ SAL_INFO("package.xstor", "Disposed!");
throw lang::DisposedException();
}
if ( !m_xSeekable.is() )
{
- SAL_INFO("package.xstor", OSL_LOG_PREFIX "No seekable!");
+ SAL_INFO("package.xstor", "No seekable!");
throw uno::RuntimeException();
}
@@ -154,13 +154,13 @@ sal_Int64 SAL_CALL OInputSeekStream::getLength()
::osl::MutexGuard aGuard( m_rMutexRef->GetMutex() );
if ( m_bDisposed )
{
- SAL_INFO("package.xstor", OSL_LOG_PREFIX "Disposed!");
+ SAL_INFO("package.xstor", "Disposed!");
throw lang::DisposedException();
}
if ( !m_xSeekable.is() )
{
- SAL_INFO("package.xstor", OSL_LOG_PREFIX "No seekable!");
+ SAL_INFO("package.xstor", "No seekable!");
throw uno::RuntimeException();
}