remove some unused methods
Change-Id: Ie86cc069b9c69087012b15597e548d1d745d6e2e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101941 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
This commit is contained in:
parent
0d027abbc5
commit
6842a50a8c
@ -592,8 +592,6 @@ include/sfx2/lokhelper.hxx:62
|
|||||||
int SfxLokHelper::getDocumentIdOfView(int)
|
int SfxLokHelper::getDocumentIdOfView(int)
|
||||||
include/sfx2/msg.hxx:120
|
include/sfx2/msg.hxx:120
|
||||||
const class std::type_info * SfxType0::Type() const
|
const class std::type_info * SfxType0::Type() const
|
||||||
include/sfx2/thumbnailview.hxx:208
|
|
||||||
unsigned short ThumbnailView::getNextItemId() const
|
|
||||||
include/sfx2/viewsh.hxx:365
|
include/sfx2/viewsh.hxx:365
|
||||||
enum LOKDeviceFormFactor SfxViewShell::GetLOKDeviceFormFactor() const
|
enum LOKDeviceFormFactor SfxViewShell::GetLOKDeviceFormFactor() const
|
||||||
include/sfx2/viewsh.hxx:367
|
include/sfx2/viewsh.hxx:367
|
||||||
@ -790,8 +788,6 @@ include/vcl/outdev.hxx:1738
|
|||||||
class basegfx::B2DPolyPolygon OutputDevice::LogicToPixel(const class basegfx::B2DPolyPolygon &,const class MapMode &) const
|
class basegfx::B2DPolyPolygon OutputDevice::LogicToPixel(const class basegfx::B2DPolyPolygon &,const class MapMode &) const
|
||||||
include/vcl/outdev.hxx:1758
|
include/vcl/outdev.hxx:1758
|
||||||
class basegfx::B2DPolyPolygon OutputDevice::PixelToLogic(const class basegfx::B2DPolyPolygon &,const class MapMode &) const
|
class basegfx::B2DPolyPolygon OutputDevice::PixelToLogic(const class basegfx::B2DPolyPolygon &,const class MapMode &) const
|
||||||
include/vcl/pngread.hxx:56
|
|
||||||
void vcl::PNGReader::SetIgnoreGammaChunk(_Bool)
|
|
||||||
include/vcl/salnativewidgets.hxx:408
|
include/vcl/salnativewidgets.hxx:408
|
||||||
_Bool TabitemValue::isBothAligned() const
|
_Bool TabitemValue::isBothAligned() const
|
||||||
include/vcl/salnativewidgets.hxx:409
|
include/vcl/salnativewidgets.hxx:409
|
||||||
|
@ -205,8 +205,6 @@ public:
|
|||||||
|
|
||||||
sal_uInt16 GetItemId( const Point& rPos ) const;
|
sal_uInt16 GetItemId( const Point& rPos ) const;
|
||||||
|
|
||||||
sal_uInt16 getNextItemId () const;
|
|
||||||
|
|
||||||
virtual bool isDrawMnemonic() const override { return false; }
|
virtual bool isDrawMnemonic() const override { return false; }
|
||||||
|
|
||||||
void setItemMaxTextLength (sal_uInt32 nLength);
|
void setItemMaxTextLength (sal_uInt32 nLength);
|
||||||
|
@ -52,8 +52,6 @@ public:
|
|||||||
std::vector<sal_uInt8> aData;
|
std::vector<sal_uInt8> aData;
|
||||||
};
|
};
|
||||||
const std::vector<ChunkData>& GetChunks() const;
|
const std::vector<ChunkData>& GetChunks() const;
|
||||||
|
|
||||||
void SetIgnoreGammaChunk(bool bIgnoreGammaChunk);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end namespace vcl
|
} // end namespace vcl
|
||||||
|
@ -963,11 +963,6 @@ sal_uInt16 ThumbnailView::GetItemId( const Point& rPos ) const
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
sal_uInt16 ThumbnailView::getNextItemId() const
|
|
||||||
{
|
|
||||||
return mItemList.empty() ? 1 : mItemList.back()->mnId + 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
void ThumbnailView::setItemMaxTextLength(sal_uInt32 nLength)
|
void ThumbnailView::setItemMaxTextLength(sal_uInt32 nLength)
|
||||||
{
|
{
|
||||||
mpItemAttrs->nMaxTextLength = nLength;
|
mpItemAttrs->nMaxTextLength = nLength;
|
||||||
|
@ -133,7 +133,6 @@ private:
|
|||||||
bool mbIDATStarted : 1; // true if IDAT seen
|
bool mbIDATStarted : 1; // true if IDAT seen
|
||||||
bool mbIDATComplete : 1; // true if finished with enough IDAT chunks
|
bool mbIDATComplete : 1; // true if finished with enough IDAT chunks
|
||||||
bool mbpHYs : 1; // true if physical size of pixel available
|
bool mbpHYs : 1; // true if physical size of pixel available
|
||||||
bool mbIgnoreGammaChunk : 1;
|
|
||||||
bool mbIgnoreCRC : 1; // skip checking CRCs while fuzzing
|
bool mbIgnoreCRC : 1; // skip checking CRCs while fuzzing
|
||||||
|
|
||||||
#if OSL_DEBUG_LEVEL > 0
|
#if OSL_DEBUG_LEVEL > 0
|
||||||
@ -174,7 +173,6 @@ public:
|
|||||||
|
|
||||||
BitmapEx GetBitmapEx();
|
BitmapEx GetBitmapEx();
|
||||||
const std::vector<vcl::PNGReader::ChunkData>& GetAllChunks();
|
const std::vector<vcl::PNGReader::ChunkData>& GetAllChunks();
|
||||||
void SetIgnoreGammaChunk( bool bIgnore ){ mbIgnoreGammaChunk = bIgnore; };
|
|
||||||
};
|
};
|
||||||
|
|
||||||
PNGReaderImpl::PNGReaderImpl( SvStream& rPNGStream )
|
PNGReaderImpl::PNGReaderImpl( SvStream& rPNGStream )
|
||||||
@ -212,7 +210,6 @@ PNGReaderImpl::PNGReaderImpl( SvStream& rPNGStream )
|
|||||||
mbIDATStarted( false ),
|
mbIDATStarted( false ),
|
||||||
mbIDATComplete( false ),
|
mbIDATComplete( false ),
|
||||||
mbpHYs ( false ),
|
mbpHYs ( false ),
|
||||||
mbIgnoreGammaChunk ( false ),
|
|
||||||
mbIgnoreCRC( utl::ConfigManager::IsFuzzing() )
|
mbIgnoreCRC( utl::ConfigManager::IsFuzzing() )
|
||||||
#if OSL_DEBUG_LEVEL > 0
|
#if OSL_DEBUG_LEVEL > 0
|
||||||
,mnAllocSizeScanline(0),
|
,mnAllocSizeScanline(0),
|
||||||
@ -352,7 +349,7 @@ BitmapEx PNGReaderImpl::GetBitmapEx()
|
|||||||
|
|
||||||
case PNGCHUNK_gAMA : // the gamma chunk must precede
|
case PNGCHUNK_gAMA : // the gamma chunk must precede
|
||||||
{ // the 'IDAT' and also the 'PLTE'(if available )
|
{ // the 'IDAT' and also the 'PLTE'(if available )
|
||||||
if (!mbIgnoreGammaChunk && !mbIDATComplete)
|
if (!mbIDATComplete)
|
||||||
ImplGetGamma();
|
ImplGetGamma();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@ -1705,11 +1702,6 @@ const std::vector< vcl::PNGReader::ChunkData >& PNGReader::GetChunks() const
|
|||||||
return mpImpl->GetAllChunks();
|
return mpImpl->GetAllChunks();
|
||||||
}
|
}
|
||||||
|
|
||||||
void PNGReader::SetIgnoreGammaChunk(bool bIgnoreGammaChunk)
|
|
||||||
{
|
|
||||||
mpImpl->SetIgnoreGammaChunk(bIgnoreGammaChunk);
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace vcl
|
} // namespace vcl
|
||||||
|
|
||||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user