[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-ebc06183d4e3
This commit is contained in:
Don Ho 2010-11-14 20:48:37 +00:00
parent 79e153399f
commit 2179160db9
1 changed files with 1 additions and 1 deletions

View File

@ -749,7 +749,7 @@ struct ScintillaViewParams
{
ScintillaViewParams() : _lineNumberMarginShow(true), _bookMarkMarginShow(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){};
bool _lineNumberMarginShow;
bool _bookMarkMarginShow;