diff options
author | George Hazan <george.hazan@gmail.com> | 2024-03-23 13:06:28 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-03-23 13:06:28 +0300 |
commit | 7ab8f789430afd1f937a47fb5f76c20b4d67412a (patch) | |
tree | 9efc2e287f2eab6df87b7ab3abfc78b9cd2927bd | |
parent | 711fc0c0283af7aa8c7c30ac5fe05105b04250a5 (diff) |
missing variable initialization
-rw-r--r-- | plugins/NewStory/src/history_control.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/NewStory/src/history_control.cpp b/plugins/NewStory/src/history_control.cpp index 6cbc484733..1a0296f22b 100644 --- a/plugins/NewStory/src/history_control.cpp +++ b/plugins/NewStory/src/history_control.cpp @@ -326,6 +326,7 @@ public: CDeleteEventsDlg(MCONTACT hContact) :
CDlgBase(g_plugin, IDD_EMPTYHISTORY),
+ m_hContact(hContact),
chkDelHistory(this, IDC_DELSERVERHISTORY),
chkForEveryone(this, IDC_BOTH)
{
|