summaryrefslogtreecommitdiff
path: root/hwpfilter
diff options
context:
space:
mode:
Diffstat (limited to 'hwpfilter')
-rw-r--r--hwpfilter/source/hbox.h6
-rw-r--r--hwpfilter/source/hcode.cxx2
-rw-r--r--hwpfilter/source/hcode.h2
-rw-r--r--hwpfilter/source/hinfo.h2
-rw-r--r--hwpfilter/source/hpara.h6
-rw-r--r--hwpfilter/source/htags.h2
-rw-r--r--hwpfilter/source/hwpeq.cxx8
-rw-r--r--hwpfilter/source/hwpfile.h2
8 files changed, 16 insertions, 14 deletions
diff --git a/hwpfilter/source/hbox.h b/hwpfilter/source/hbox.h
index c18be55ff994..26a29623057a 100644
--- a/hwpfilter/source/hbox.h
+++ b/hwpfilter/source/hbox.h
@@ -573,7 +573,7 @@ struct PicDefFile
};
/**
- * @short Embeded image file
+ * @short Embedded image file
*/
struct PicDefEmbed
{
@@ -621,7 +621,7 @@ typedef union
/**
* There are four kinds of image.
* @li External image
- * @li Embeded image
+ * @li Embedded image
* @li Win32 ole object
* @li Drawing object of hwp
*
@@ -650,7 +650,7 @@ struct Picture: public FBox
/**
* Type of this object
- * It is one of external/ole/embeded/drawing picture
+ * It is one of external/ole/embedded/drawing picture
*/
uchar pictype;
hunit skip[2];
diff --git a/hwpfilter/source/hcode.cxx b/hwpfilter/source/hcode.cxx
index 6ecd3544658e..92ca0e381f25 100644
--- a/hwpfilter/source/hcode.cxx
+++ b/hwpfilter/source/hcode.cxx
@@ -1235,7 +1235,7 @@ hchar_string kstr2hstr(unsigned char const* src)
/**
- * Transfer interger to string following format
+ * Transfer integer to string following format
*/
char* Int2Str(int value, const char *format, char *buf)
{
diff --git a/hwpfilter/source/hcode.h b/hwpfilter/source/hcode.h
index 799d41b4508f..f36b8cba7a5d 100644
--- a/hwpfilter/source/hcode.h
+++ b/hwpfilter/source/hcode.h
@@ -58,7 +58,7 @@ DLLEXPORT ::std::string urltounix(const char *src);
DLLEXPORT ::std::string urltowin(const char *src);
#endif
/**
- * Transfer interger to string following format
+ * Transfer integer to string following format
*/
DLLEXPORT char* Int2Str(int value, const char *format, char *buf);
diff --git a/hwpfilter/source/hinfo.h b/hwpfilter/source/hinfo.h
index c16a6ef32b84..81517dbe2e5b 100644
--- a/hwpfilter/source/hinfo.h
+++ b/hwpfilter/source/hinfo.h
@@ -50,7 +50,7 @@ typedef struct
/* ?????? ??????, ???????? ???? */
typedef struct
{
- char type; // 0- background color, 1 - external image, 2- embeded image
+ char type; // 0- background color, 1 - external image, 2- embedded image
char reserved1[8];
int luminance; /* ???? ( -100 ~ 100 ) */
int contrast; /* ???? ( -100 ~ 100 ) */
diff --git a/hwpfilter/source/hpara.h b/hwpfilter/source/hpara.h
index c49c8b712af8..a3d0ae0b6f2e 100644
--- a/hwpfilter/source/hpara.h
+++ b/hwpfilter/source/hpara.h
@@ -40,7 +40,7 @@ struct HBox;
enum
{
PA_USER_COLUMN = 1,
- PA_USER_PAGE = 2, /* p user_page definiton */
+ PA_USER_PAGE = 2, /* p user_page definition */
PA_SECTION_BREAK = 4,
PA_BLOCK_BEGIN = 8,
PA_IN_BLOCK = 16,
@@ -124,11 +124,11 @@ class DLLEXPORT HWPPara
/* layout을 위한 함수 */
/**
- * Returns the character sytle of paragraph.
+ * Returns the character style of paragraph.
*/
CharShape *GetCharShape(int pos);
/**
- * Returns the sytle of paragraph.
+ * Returns the style of paragraph.
*/
ParaShape *GetParaShape(void);
diff --git a/hwpfilter/source/htags.h b/hwpfilter/source/htags.h
index 681832643e1e..a9c35fe1b569 100644
--- a/hwpfilter/source/htags.h
+++ b/hwpfilter/source/htags.h
@@ -22,7 +22,7 @@
class HWPFile;
/**
- * @short Embeded image
+ * @short Embedded image
*/
struct EmPicture
{
diff --git a/hwpfilter/source/hwpeq.cxx b/hwpfilter/source/hwpeq.cxx
index ba2e762ce790..2ae2b55ad1ed 100644
--- a/hwpfilter/source/hwpeq.cxx
+++ b/hwpfilter/source/hwpeq.cxx
@@ -437,7 +437,7 @@ static char *make_keyword( char *keyword, const char *token)
return keyword;
}
-// token reading funtion
+// token reading function
struct eq_stack {
MzString white;
MzString token;
@@ -462,7 +462,9 @@ void push_token(MzString &white, MzString &token, istream *strm)
stk->strm = strm;
}
-/* 읽은 토큰의 길이를 반환한다. */
+/*
+ 읽은 토큰의 길이를 반환한다.
+*/
/* control char, control sequence, binary sequence,
alphabet string, sigle character */
static int next_token(MzString &white, MzString &token, istream *strm)
@@ -482,7 +484,7 @@ static int next_token(MzString &white, MzString &token, istream *strm)
if( !strm->good() || (ch = strm->get()) == EOF )
return 0;
- // read preceeding ws
+ // read preceding ws
if( IS_WS(ch) ) {
do white << (char) ch;
while( IS_WS(ch = strm->get()) );
diff --git a/hwpfilter/source/hwpfile.h b/hwpfilter/source/hwpfile.h
index 41e50b72511b..a7bf4fabb475 100644
--- a/hwpfilter/source/hwpfile.h
+++ b/hwpfilter/source/hwpfile.h
@@ -189,7 +189,7 @@ class DLLEXPORT HWPFile
bool ParaListRead();
/* 그림 등의 추가 정보를 읽는다. */
/**
- * Reads additional information like embeded image of hwp file from HIODev
+ * Reads additional information like embedded image of hwp file from HIODev
*/
bool TagsRead(void);