[Libreoffice-commits] core.git: basic/source
Mike Kaganski (via logerrit)
logerrit at kemper.freedesktop.org
Tue Aug 10 20:49:28 UTC 2021
basic/source/classes/image.cxx | 23 +++++++++--------------
1 file changed, 9 insertions(+), 14 deletions(-)
New commits:
commit 736ef4ab060255b223324b73259af88b9c30f537
Author: Mike Kaganski <mike.kaganski at collabora.com>
AuthorDate: Tue Aug 10 21:19:32 2021 +0200
Commit: Mike Kaganski <mike.kaganski at collabora.com>
CommitDate: Tue Aug 10 22:48:48 2021 +0200
No need in this function
Change-Id: I391183753e4fad800b7c69aef2e76a3780ce52a0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120244
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski at collabora.com>
diff --git a/basic/source/classes/image.cxx b/basic/source/classes/image.cxx
index 50ccbfa09669..229dc8058518 100644
--- a/basic/source/classes/image.cxx
+++ b/basic/source/classes/image.cxx
@@ -61,11 +61,6 @@ void SbiImage::Clear()
bError = false;
}
-static bool SbiGood( SvStream const & r )
-{
- return r.good();
-}
-
// Open Record
static sal_uInt64 SbiOpenRecord( SvStream& r, FileOffset nSignature, sal_uInt16 nElem )
{
@@ -218,14 +213,14 @@ bool SbiImage::Load( SvStream& r, sal_uInt32& nVersion )
nCount = nMaxStrings;
}
MakeStrings( nCount );
- for( size_t i = 0; i < mvStringOffsets.size() && SbiGood( r ); i++ )
+ for (size_t i = 0; i < mvStringOffsets.size() && r.good(); i++)
{
sal_uInt32 nOff;
r.ReadUInt32( nOff );
mvStringOffsets[ i ] = static_cast<sal_uInt16>(nOff);
}
r.ReadUInt32( nLen );
- if( SbiGood( r ) )
+ if (r.good())
{
pStrings.reset(new sal_Unicode[ nLen ]);
nStringSize = static_cast<sal_uInt16>(nLen);
@@ -369,7 +364,7 @@ bool SbiImage::Load( SvStream& r, sal_uInt32& nVersion )
}
done:
r.Seek( nLast );
- if( !SbiGood( r ) )
+ if (!r.good())
{
bError = true;
}
@@ -410,28 +405,28 @@ bool SbiImage::Save( SvStream& r, sal_uInt32 nVer )
.WriteInt32( 0 );
// Name?
- if( !aName.isEmpty() && SbiGood( r ) )
+ if (!aName.isEmpty() && r.good())
{
nPos = SbiOpenRecord( r, FileOffset::Name, 1 );
r.WriteUniOrByteString( aName, eCharSet );
SbiCloseRecord( r, nPos );
}
// Comment?
- if( !aComment.isEmpty() && SbiGood( r ) )
+ if (!aComment.isEmpty() && r.good())
{
nPos = SbiOpenRecord( r, FileOffset::Comment, 1 );
r.WriteUniOrByteString( aComment, eCharSet );
SbiCloseRecord( r, nPos );
}
// Source?
- if( !aOUSource.isEmpty() && SbiGood( r ) )
+ if (!aOUSource.isEmpty() && r.good())
{
nPos = SbiOpenRecord( r, FileOffset::Source, 1 );
r.WriteUniOrByteString( aOUSource, eCharSet );
SbiCloseRecord( r, nPos );
}
// Binary data?
- if (aCode.size() && SbiGood(r))
+ if (aCode.size() && r.good())
{
nPos = SbiOpenRecord( r, FileOffset::PCode, 1 );
if ( bLegacy )
@@ -453,7 +448,7 @@ bool SbiImage::Save( SvStream& r, sal_uInt32 nVer )
nPos = SbiOpenRecord( r, FileOffset::StringPool, mvStringOffsets.size() );
// For every String:
// sal_uInt32 Offset of the Strings in the Stringblock
- for( size_t i = 0; i < mvStringOffsets.size() && SbiGood( r ); i++ )
+ for (size_t i = 0; i < mvStringOffsets.size() && r.good(); i++)
{
r.WriteUInt32( mvStringOffsets[ i ] );
}
@@ -559,7 +554,7 @@ bool SbiImage::Save( SvStream& r, sal_uInt32 nVer )
}
// Set overall length
SbiCloseRecord( r, nStart );
- if( !SbiGood( r ) )
+ if (!r.good())
{
bError = true;
}
More information about the Libreoffice-commits
mailing list