summaryrefslogtreecommitdiff
path: root/hwpfilter/source/hfont.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'hwpfilter/source/hfont.cxx')
-rw-r--r--hwpfilter/source/hfont.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/hwpfilter/source/hfont.cxx b/hwpfilter/source/hfont.cxx
index 6607261d3cdb..72746f23467e 100644
--- a/hwpfilter/source/hfont.cxx
+++ b/hwpfilter/source/hfont.cxx
@@ -28,7 +28,7 @@ HWPFont::HWPFont()
for (int ii = 0; ii < NLanguage; ii++)
{
nFonts[ii] = 0;
- fontnames[ii] = NULL;
+ fontnames[ii] = nullptr;
}
}
@@ -61,9 +61,9 @@ int HWPFont::AddFont(int lang, const char *font)
const char *HWPFont::GetFontName(int lang, int id)
{
if (!(lang >= 0 && lang < NLanguage))
- return 0;
+ return nullptr;
if (id < 0 || nFonts[lang] <= id)
- return 0;
+ return nullptr;
return fontnames[lang] + id * FONTNAMELEN;
}