[CODE_ENHANCEMENT] Init some uninitialized vars.
This commit is contained in:
parent
084d3c60a8
commit
c123fd1a01
@ -61,7 +61,7 @@ notepad++ [--help] [-multiInst] [-noPlugin] [-lLanguage] [-LlangCode] [-nLineNum
|
|||||||
|
|
||||||
class Notepad_plus_Window : public Window {
|
class Notepad_plus_Window : public Window {
|
||||||
public:
|
public:
|
||||||
Notepad_plus_Window() {};
|
Notepad_plus_Window() : _isPrelaunch(false), _disablePluginsManager(false) {};
|
||||||
void init(HINSTANCE, HWND, const TCHAR *cmdLine, CmdLineParams *cmdLineParams);
|
void init(HINSTANCE, HWND, const TCHAR *cmdLine, CmdLineParams *cmdLineParams);
|
||||||
|
|
||||||
bool isDlgsMsg(MSG *msg) const;
|
bool isDlgsMsg(MSG *msg) const;
|
||||||
|
@ -207,7 +207,7 @@ struct CmdLineParams {
|
|||||||
|
|
||||||
CmdLineParams() : _isNoPlugin(false), _isReadOnly(false), _isNoSession(false), _isNoTab(false),_showLoadingTime(false),\
|
CmdLineParams() : _isNoPlugin(false), _isReadOnly(false), _isNoSession(false), _isNoTab(false),_showLoadingTime(false),\
|
||||||
_isPreLaunch(false), _line2go(-1), _column2go(-1), _langType(L_EXTERNAL), _isPointXValid(false), _isPointYValid(false),\
|
_isPreLaunch(false), _line2go(-1), _column2go(-1), _langType(L_EXTERNAL), _isPointXValid(false), _isPointYValid(false),\
|
||||||
_localizationPath(TEXT("")), _easterEggName(TEXT("")), _quoteType(0)
|
_alwaysOnTop(false), _localizationPath(TEXT("")), _easterEggName(TEXT("")), _quoteType(0)
|
||||||
{
|
{
|
||||||
_point.x = 0;
|
_point.x = 0;
|
||||||
_point.y = 0;
|
_point.y = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user