summaryrefslogtreecommitdiff
path: root/unotools/source/config/fontcfg.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:27:55 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:31:57 +0100
commitcf7dc8bc19650fe5e814205b512dffad8299c276 (patch)
treeae3653c5038c3e2d6f2afce7ae6ca21fdf848a2e /unotools/source/config/fontcfg.cxx
parent34a66ff58a20856fb4388e523becdd5397e08fb0 (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: Ib80c434598481ca0d05c800991fea9b30ef329f8
Diffstat (limited to 'unotools/source/config/fontcfg.cxx')
-rw-r--r--unotools/source/config/fontcfg.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/unotools/source/config/fontcfg.cxx b/unotools/source/config/fontcfg.cxx
index df4e45597c55..483af6fe5a6a 100644
--- a/unotools/source/config/fontcfg.cxx
+++ b/unotools/source/config/fontcfg.cxx
@@ -444,7 +444,7 @@ static const char* const aImplKillLeadingList[] =
"ipa",
"sazanami",
"kochi",
- NULL
+ nullptr
};
static const char* const aImplKillTrailingList[] =
@@ -494,14 +494,14 @@ static const char* const aImplKillTrailingList[] =
"24cpi",
"scale",
"pc",
- NULL
+ nullptr
};
static const char* const aImplKillTrailingWithExceptionsList[] =
{
- "ce", "monospace", "oldface", NULL,
- "ps", "caps", NULL,
- NULL
+ "ce", "monospace", "oldface", nullptr,
+ "ps", "caps", nullptr,
+ nullptr
};
struct ImplFontAttrWeightSearchData
@@ -527,7 +527,7 @@ static ImplFontAttrWeightSearchData const aImplWeightAttrSearchList[] =
{ "ultralight", WEIGHT_ULTRALIGHT },
{ "light", WEIGHT_LIGHT },
{ "medium", WEIGHT_MEDIUM },
-{ NULL, WEIGHT_DONTKNOW },
+{ nullptr, WEIGHT_DONTKNOW },
};
struct ImplFontAttrWidthSearchData
@@ -548,7 +548,7 @@ static ImplFontAttrWidthSearchData const aImplWidthAttrSearchList[] =
{ "condensed", WIDTH_CONDENSED },
{ "cond", WIDTH_CONDENSED },
{ "cn", WIDTH_CONDENSED },
-{ NULL, WIDTH_DONTKNOW },
+{ nullptr, WIDTH_DONTKNOW },
};
struct ImplFontAttrTypeSearchData
@@ -618,7 +618,7 @@ static ImplFontAttrTypeSearchData const aImplTypeAttrSearchList[] =
{ "ms", ImplFontAttrs::None },
{ "cpi", ImplFontAttrs::None },
{ "no", ImplFontAttrs::None },
-{ NULL, ImplFontAttrs::None },
+{ nullptr, ImplFontAttrs::None },
};
static bool ImplKillLeading( OUString& rName, const char* const* ppStr )
@@ -1104,7 +1104,7 @@ const FontNameAttr* FontSubstConfiguration::getSubstInfo( const OUString& rFontN
const LanguageTag& rLanguageTag ) const
{
if( rFontName.isEmpty() )
- return NULL;
+ return nullptr;
// search if a (language dep.) replacement table for the given font exists
// fallback is english
@@ -1142,7 +1142,7 @@ const FontNameAttr* FontSubstConfiguration::getSubstInfo( const OUString& rFontN
}
}
}
- return NULL;
+ return nullptr;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */