diff options
author | George Hazan <ghazan@miranda.im> | 2018-08-18 11:24:18 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-08-18 11:24:18 +0300 |
commit | 775403f88b6bfe4c36dc72eddc067488142e40c0 (patch) | |
tree | 81d4311e1bede8852da068dee29f518eaf286c56 /plugins | |
parent | e2d93196c51aa1e8ba2049b937a01fac32e8f568 (diff) |
otherwise this variable might have any value
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Import/src/stdafx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Import/src/stdafx.h b/plugins/Import/src/stdafx.h index 7a19fd8cf5..3fa8d721fc 100644 --- a/plugins/Import/src/stdafx.h +++ b/plugins/Import/src/stdafx.h @@ -115,7 +115,7 @@ void RegisterJson(); class CContactImportDlg : public CDlgBase
{
MCONTACT m_hContact;
- int m_flags;
+ int m_flags = 0;
CCtrlButton m_btnOpenFile, m_btnOk;
CCtrlEdit edtFileName;
|