summaryrefslogtreecommitdiff
path: root/hwpfilter
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2014-04-20 09:59:32 +0200
committerJulien Nabet <serval2412@yahoo.fr>2014-04-20 10:00:01 +0200
commit0db1e713bde4b16604c2f564fdc785ba0b467242 (patch)
tree9ff5c0e35d0056ac7538856741ea0531925d66be /hwpfilter
parent4393bd096c377897cda0b1199ec19d74f42f6132 (diff)
cpplint: [readability/utf8] Line contains invalid UTF-8
Change-Id: I8052539d86fbda5631b31f3163b1c51666153c8c
Diffstat (limited to 'hwpfilter')
-rw-r--r--hwpfilter/source/drawdef.h6
-rw-r--r--hwpfilter/source/hiodev.h6
-rw-r--r--hwpfilter/source/hpara.h12
-rw-r--r--hwpfilter/source/hwpfile.h6
-rw-r--r--hwpfilter/source/hwplib.h6
5 files changed, 18 insertions, 18 deletions
diff --git a/hwpfilter/source/drawdef.h b/hwpfilter/source/drawdef.h
index 6169892422f8..6cb38fe64cdc 100644
--- a/hwpfilter/source/drawdef.h
+++ b/hwpfilter/source/drawdef.h
@@ -127,9 +127,9 @@ struct RotationProperty
*/
struct HWPDOProperty
{
- int line_pstyle; /* ߰ */
- int line_hstyle; /* ȭǥ */
- int line_tstyle; /* */
+ int line_pstyle; /* 선 중간 모양 */
+ int line_hstyle; /* 끝 화살표 모양 */
+ int line_tstyle; /* 시작 모양 */
DWORD line_color;
hunit line_width;
DWORD fill_color;
diff --git a/hwpfilter/source/hiodev.h b/hwpfilter/source/hiodev.h
index f5ccad7998db..bc8a82b7f107 100644
--- a/hwpfilter/source/hiodev.h
+++ b/hwpfilter/source/hiodev.h
@@ -64,7 +64,7 @@ class DLLEXPORT HIODev
struct gz_stream;
-/* ġ */
+/* 파일 입출력 장치 */
/**
* This controls the HStream given by constructor
@@ -73,7 +73,7 @@ struct gz_stream;
class HStreamIODev : public HIODev
{
private:
-/* zlib Ǯ ڷ */
+/* zlib으로 압축을 풀기 위한 자료 구조 */
gz_stream *_gzfp;
HStream& _stream;
public:
@@ -129,7 +129,7 @@ class HStreamIODev : public HIODev
virtual void init() SAL_OVERRIDE;
};
-/* ޸ ġ */
+/* 메모리 입출력 장치 */
/**
* The HMemIODev class controls the Input/Output device.
* @short Memory IO device
diff --git a/hwpfilter/source/hpara.h b/hwpfilter/source/hpara.h
index a2bae585f505..c49c8b712af8 100644
--- a/hwpfilter/source/hpara.h
+++ b/hwpfilter/source/hpara.h
@@ -53,7 +53,7 @@ class HWPPara;
struct LineInfo
{
-/* ϴ ġ : Ʈ ̸ */
+/* 시작하는 글자의 위치 : 콘트롤은 여러 길이를 가진다 */
/**
* Starting character position
*/
@@ -84,7 +84,7 @@ class DLLEXPORT HWPPara
/**
* Zero is for the new paragraph style.
*/
- unsigned char reuse_shape; /* 0̸ */
+ unsigned char reuse_shape; /* 0이면 새모양 */
unsigned short nch;
unsigned short nline;
@@ -95,15 +95,15 @@ class DLLEXPORT HWPPara
/**
* If the value is 0, all character of paragraph have same style given cshape
*/
- unsigned char contain_cshape; /* 0̸ ڰ ǥ */
+ unsigned char contain_cshape; /* 0이면 모든 글자가 대표 글자 모양 */
unsigned char etcflag;
/**
* Checks the special characters in the paragraph
*/
unsigned long ctrlflag;
unsigned char pstyno;
- CharShape cshape; /* ڰ ϶ */
- ParaShape pshape; /* reuse flag 0̸ */
+ CharShape cshape; /* 글자가 모두 같은 모양일때 */
+ ParaShape pshape; /* reuse flag가 0이면 */
int pno; /* run-time only */
LineInfo *linfo;
@@ -122,7 +122,7 @@ class DLLEXPORT HWPPara
void SetNext(HWPPara *n) { _next = n; };
-/* layout Լ */
+/* layout을 위한 함수 */
/**
* Returns the character sytle of paragraph.
*/
diff --git a/hwpfilter/source/hwpfile.h b/hwpfilter/source/hwpfile.h
index a50ad584396e..41e50b72511b 100644
--- a/hwpfilter/source/hwpfile.h
+++ b/hwpfilter/source/hwpfile.h
@@ -187,7 +187,7 @@ class DLLEXPORT HWPFile
* Reads paragraph list of hwp file from HIODev
*/
bool ParaListRead();
-/* ׸ ߰ д´. */
+/* 그림 등의 추가 정보를 읽는다. */
/**
* Reads additional information like embeded image of hwp file from HIODev
*/
@@ -266,7 +266,7 @@ class DLLEXPORT HWPFile
OlePicture *oledata;
private:
-/* hwp ̸ */
+/* hwp 파일 이름 */
int m_nCurrentPage;
int m_nMaxSettedPage;
HIODev *hiodev;
@@ -283,7 +283,7 @@ class DLLEXPORT HWPFile
std::list<EmPicture*> emblist;
std::list<HyperText*> hyperlist;
int currenthyper;
- std::list<ParaShape*> pslist; /* Ÿǽ ʿ */
+ std::list<ParaShape*> pslist; /* 스타오피스의 구조상 필요 */
std::list<CharShape*> cslist;
std::list<FBoxStyle*> fbslist;
std::list<DateCode*> datecodes;
diff --git a/hwpfilter/source/hwplib.h b/hwpfilter/source/hwplib.h
index 25691b90d40d..efa5b66a45db 100644
--- a/hwpfilter/source/hwplib.h
+++ b/hwpfilter/source/hwplib.h
@@ -23,7 +23,7 @@
#include <string>
-/* hwp96 hunit 4byte Ǿ. */
+/* hwp96부터 hunit가 4byte가 되었다. */
/**
* size of hunit is 4 since hwp96 version
*/
@@ -124,11 +124,11 @@ typedef struct
#define ONE_MILI (71)
#define ONE_DOT (19)
-/* HWP 3.0 */
+/* HWP 3.0 문서 정보 */
#define NLanguage 7
-/* */
+/* 제어 문자 */
/**
* Control character
*/