summaryrefslogtreecommitdiff
path: root/hwpfilter/source/hwpfile.h
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-11-02 13:24:41 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-11-02 21:26:18 +0100
commit9a236714e539c772cad7b56caf21dc12b79e77df (patch)
tree004f7805da695a1b4f3e96b830a0d54c995f9458 /hwpfilter/source/hwpfile.h
parentcd7a2e8c60d67701a311942f0abfe9afaae822cf (diff)
ofz#3858 use a single scratch buffer
Change-Id: Icdea835b89da2e7233e17893c759e411d659811c Reviewed-on: https://gerrit.libreoffice.org/44213 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'hwpfilter/source/hwpfile.h')
-rw-r--r--hwpfilter/source/hwpfile.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/hwpfilter/source/hwpfile.h b/hwpfilter/source/hwpfile.h
index bfa6da1b97e6..817173d24707 100644
--- a/hwpfilter/source/hwpfile.h
+++ b/hwpfilter/source/hwpfile.h
@@ -31,7 +31,7 @@
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
-
+#include <sal/types.h>
#include "hwplib.h"
#include "hfont.h"
#include "hstyle.h"
@@ -273,11 +273,12 @@ class DLLEXPORT HWPFile
int info_block_len;
int error_code;
OlePicture *oledata;
+ unsigned char scratch[SAL_MAX_UINT16];
private:
/* hwp 파일 이름 */
- int m_nCurrentPage;
- int m_nMaxSettedPage;
+ int m_nCurrentPage;
+ int m_nMaxSettedPage;
HIODev *hiodev;
// read hwp contents
HWPInfo _hwpInfo;