summaryrefslogtreecommitdiff
path: root/hwpfilter/source/hbox.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'hwpfilter/source/hbox.cxx')
-rw-r--r--hwpfilter/source/hbox.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/hwpfilter/source/hbox.cxx b/hwpfilter/source/hbox.cxx
index ef6348817f48..9ad331945798 100644
--- a/hwpfilter/source/hbox.cxx
+++ b/hwpfilter/source/hbox.cxx
@@ -480,7 +480,7 @@ static hchar olHanglJaso(int num, int type)
if (type == OL_HANGL_JASO)
{
- num = num % (14 + (sizeof(jung) / sizeof(char)));
+ num = num % (14 + SAL_N_ELEMENTS(jung));
if (num < 14)
hh = (han_init[num] << 8) | 'A';
@@ -493,7 +493,7 @@ static hchar olHanglJaso(int num, int type)
hh = (han_init[num] << 8) | 'a';
else
{
- int j = (num / 14) % (sizeof(jung2) / sizeof(char));
+ int j = (num / 14) % SAL_N_ELEMENTS(jung2);
num = num % 14;
hh = (han_init[num] << 8) | (jung2[j] << 5) | 1;