summaryrefslogtreecommitdiffstats
path: root/include/vcl/gfxlink.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-05-18 14:30:24 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-20 08:07:53 +0000
commit72edb6967f245f0c99c6a61e0ce8d0a245600cba (patch)
tree5608bc1243477801e747735d8b71ec42fbb01e86 /include/vcl/gfxlink.hxx
parentconvert SC_COMPILER to scoped enum (diff)
downloadcore-72edb6967f245f0c99c6a61e0ce8d0a245600cba.tar.gz
core-72edb6967f245f0c99c6a61e0ce8d0a245600cba.zip
loplugin:unusedmethods in vcl
also drops the CairoFontsCache ref-counting, since nothing was actually using it. Change-Id: If05ecb054b6b8d97b0d3010185cf23c28390ec04 Reviewed-on: https://gerrit.libreoffice.org/25105 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/vcl/gfxlink.hxx')
-rw-r--r--include/vcl/gfxlink.hxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/vcl/gfxlink.hxx b/include/vcl/gfxlink.hxx
index 9be44e989ab3..3bdb4b79595a 100644
--- a/include/vcl/gfxlink.hxx
+++ b/include/vcl/gfxlink.hxx
@@ -34,12 +34,6 @@ struct ImpBuffer
sal_uLong mnRefCount;
sal_uInt8* mpBuffer;
- ImpBuffer( sal_uLong nSize )
- {
- mnRefCount = 1UL;
- mpBuffer = nSize ? new sal_uInt8[ nSize ] : nullptr;
- }
-
ImpBuffer( sal_uInt8* pBuf ) { mnRefCount = 1UL; mpBuffer = pBuf; }
~ImpBuffer() { delete[] mpBuffer; }
@@ -124,7 +118,6 @@ private:
public:
GfxLink();
GfxLink( const GfxLink& );
- GfxLink( const OUString& rPath, GfxLinkType nType );
GfxLink( sal_uInt8* pBuf, sal_uInt32 nBufSize, GfxLinkType nType );
~GfxLink();