diff options
author | Neil <nyamatongwe@gmail.com> | 2018-05-14 15:34:02 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-05-14 15:34:02 +1000 |
commit | bdb6763e14287aed0ded6d347ce45f0343f84ac8 (patch) | |
tree | 85f1407d897b8bf7004edfa1853ff008d16462d4 /src/Style.h | |
parent | 3925ab4bfc2179983520713f67b820adfdd642a9 (diff) | |
download | scintilla-mirror-bdb6763e14287aed0ded6d347ce45f0343f84ac8.tar.gz |
Backport: Replace 0 with nullptr.
Backport of changeset 6945:044688817478.
Diffstat (limited to 'src/Style.h')
-rw-r--r-- | src/Style.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Style.h b/src/Style.h index 58cc3cd82..441d0150a 100644 --- a/src/Style.h +++ b/src/Style.h @@ -18,7 +18,7 @@ struct FontSpecification { int characterSet; int extraFontFlag; FontSpecification() : - fontName(0), + fontName(nullptr), weight(SC_WEIGHT_NORMAL), italic(false), size(10 * SC_FONT_SIZE_MULTIPLIER), |