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 | d7cc141fe0d13015ac3b2a52c33b25f5ea0b1271 (patch) | |
| tree | 9248e16e13eb2dc442f4f4717f662240704d19c4 /src/Style.h | |
| parent | ec4c0f1a7a81bcb802f97185d00c1bbeef27c72f (diff) | |
| download | scintilla-mirror-d7cc141fe0d13015ac3b2a52c33b25f5ea0b1271.tar.gz | |
Replace 0 with nullptr.
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), | 
