summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCaolán McNamara <caolan.mcnamara@collabora.com>2024-02-13 11:22:16 +0000
committerCaolán McNamara <caolan.mcnamara@collabora.com>2024-02-13 15:09:25 +0100
commit6e4e2ff4dcef937652f0ce502f60bd11073525d7 (patch)
treefdfcef78941579b1d34f3a20870e5b7c907c7008
parentpass width hint around as twips and convert to pixel at the end (diff)
downloadcore-6e4e2ff4dcef937652f0ce502f60bd11073525d7.tar.gz
core-6e4e2ff4dcef937652f0ce502f60bd11073525d7.zip
drop unused PicDefFile union member
Change-Id: Ib9b62595012c7220a849a54d0d61200ac0b132c9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163299 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
-rw-r--r--hwpfilter/source/hbox.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/hwpfilter/source/hbox.h b/hwpfilter/source/hbox.h
index f7813b225dd5..5136d281bba1 100644
--- a/hwpfilter/source/hbox.h
+++ b/hwpfilter/source/hbox.h
@@ -523,15 +523,6 @@ enum pictype
PICTYPE_FILE, PICTYPE_OLE, PICTYPE_EMBED,
PICTYPE_DRAW, PICTYPE_UNKNOWN
};
-/**
- * @short External image file
- */
-struct PicDefFile
-{
- char path[256];
- void *img;
- bool skipfind;
-};
/**
* @short Embedded image file
@@ -573,7 +564,6 @@ struct PicDefUnknown
typedef union
{
- PicDefFile picfile;
PicDefEmbed picembed;
PicDefOle picole;
PicDefDraw picdraw;