summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-07-22 13:07:14 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-07-23 06:46:22 +0200
commita17b19726d723b16dacb49db7a8efd5fee9cb4cf (patch)
tree42a90e999e557031994b820b058c69cac514c36f /include
parentb71e02dd5bfaaa490dc7f56eddf10c17681108b5 (diff)
loplugin:unusedmethods
Change-Id: I3bde62d674f5beaa6d19dcd22e6be15dfefe4205 Reviewed-on: https://gerrit.libreoffice.org/76118 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/vcl/gfxlink.hxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/include/vcl/gfxlink.hxx b/include/vcl/gfxlink.hxx
index 55dcf25ef6a5..c3fca958d176 100644
--- a/include/vcl/gfxlink.hxx
+++ b/include/vcl/gfxlink.hxx
@@ -53,21 +53,10 @@ class Graphic;
class VCL_DLLPUBLIC GfxLink
{
private:
-
- struct SwapOutData
- {
- SwapOutData(const OUString &aURL);
- ~SwapOutData();
-
- OUString const maURL; // File is removed in the destructor
-
- };
-
GfxLinkType meType;
sal_uInt32 mnUserId;
mutable std::shared_ptr<sal_uInt8> mpSwapInData;
- mutable std::shared_ptr<SwapOutData> mpSwapOutData;
sal_uInt32 mnSwapInDataSize;
MapMode maPrefMapMode;
@@ -106,8 +95,6 @@ public:
bool ExportNative( SvStream& rOStream ) const;
- bool IsSwappedOut() const { return( bool(mpSwapOutData) ); }
-
bool IsEMF() const; // WMF & EMF stored under the same type (NativeWmf)
public: