summaryrefslogtreecommitdiff
path: root/comphelper/source/streaming/streamsection.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/source/streaming/streamsection.cxx')
-rw-r--r--comphelper/source/streaming/streamsection.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/comphelper/source/streaming/streamsection.cxx b/comphelper/source/streaming/streamsection.cxx
index 1fa71fd42682..b95cf146c335 100644
--- a/comphelper/source/streaming/streamsection.cxx
+++ b/comphelper/source/streaming/streamsection.cxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -74,10 +74,10 @@ OStreamSection::OStreamSection(const staruno::Reference< stario::XDataOutputStre
OStreamSection::~OStreamSection()
{
try
- { // don't allow any exceptions to leave this block, this may be called during the stack unwinding of an exception
+ { // don't allow any exceptions to leave this block, this may be called during the stack unwinding of an exception
// handling routing
if (m_xInStream.is() && m_xMarkStream.is())
- { // we're working on an input stream
+ { // we're working on an input stream
m_xMarkStream->jumpToMark(m_nBlockStart);
m_xInStream->skipBytes(m_nBlockLen);
m_xMarkStream->deleteMark(m_nBlockStart);
@@ -89,7 +89,7 @@ OStreamSection::~OStreamSection()
// nothing to do : the estimation the caller gave us (in the ctor) was correct
m_xMarkStream->deleteMark(m_nBlockStart);
else
- { // the estimation was wrong (or we didn't get one)
+ { // the estimation was wrong (or we didn't get one)
m_nBlockLen = nRealBlockLength;
m_xMarkStream->jumpToMark(m_nBlockStart);
m_xOutStream->writeLong(m_nBlockLen);
@@ -107,7 +107,7 @@ sal_Int32 OStreamSection::available()
{
sal_Int32 nBytes = 0;
try
- { // don't allow any exceptions to leave this block, this may be called during the stack unwinding of an exception
+ { // don't allow any exceptions to leave this block, this may be called during the stack unwinding of an exception
if (m_xInStream.is() && m_xMarkStream.is())
nBytes = m_xMarkStream->offsetToMark(m_nBlockStart) - sizeof(m_nBlockLen);
}
@@ -118,7 +118,7 @@ sal_Int32 OStreamSection::available()
}
// -----------------------------------------------------------------------------
-} // namespace comphelper
+} // namespace comphelper
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */