[BUG_FIXED] (Author: Christian Cuvier) Initialize the variable _edgeNbColumn to avoid crash if config.xml is not present.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@706 f5eea248-9336-0410-98b8-ebc06183d4e3remotes/trunk
parent
79e153399f
commit
2179160db9
|
@ -749,7 +749,7 @@ struct ScintillaViewParams
|
||||||
{
|
{
|
||||||
ScintillaViewParams() : _lineNumberMarginShow(true), _bookMarkMarginShow(true),\
|
ScintillaViewParams() : _lineNumberMarginShow(true), _bookMarkMarginShow(true),\
|
||||||
_folderStyle(FOLDER_STYLE_BOX), _foldMarginShow(true), _indentGuideLineShow(true),\
|
_folderStyle(FOLDER_STYLE_BOX), _foldMarginShow(true), _indentGuideLineShow(true),\
|
||||||
_currentLineHilitingShow(true), _wrapSymbolShow(false), _doWrap(false),\
|
_currentLineHilitingShow(true), _wrapSymbolShow(false), _doWrap(false), _edgeNbColumn(80),\
|
||||||
_zoom(0), _zoom2(0), _whiteSpaceShow(false), _eolShow(false), _lineWrapMethod(LINEWRAP_ALIGNED){};
|
_zoom(0), _zoom2(0), _whiteSpaceShow(false), _eolShow(false), _lineWrapMethod(LINEWRAP_ALIGNED){};
|
||||||
bool _lineNumberMarginShow;
|
bool _lineNumberMarginShow;
|
||||||
bool _bookMarkMarginShow;
|
bool _bookMarkMarginShow;
|
||||||
|
|
Loading…
Reference in New Issue