summaryrefslogtreecommitdiff
path: root/plugins/NewStory/src/history_control.cpp
diff options
context:
space:
mode:
authorMataes <mataes2007@gmail.com>2020-05-09 16:17:33 +0300
committerMataes <mataes2007@gmail.com>2020-05-09 16:17:33 +0300
commit7383a0e57fc724da19d9a6e8b56e20012cc91dac (patch)
tree78531347c1b653756685788045a26aa91c66e539 /plugins/NewStory/src/history_control.cpp
parentc6ec90d3b8757041feacc5a02d46d7041fccd3cd (diff)
newstory: clear log
Diffstat (limited to 'plugins/NewStory/src/history_control.cpp')
-rw-r--r--plugins/NewStory/src/history_control.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/NewStory/src/history_control.cpp b/plugins/NewStory/src/history_control.cpp
index 690e83ce9e..c005d18728 100644
--- a/plugins/NewStory/src/history_control.cpp
+++ b/plugins/NewStory/src/history_control.cpp
@@ -414,6 +414,13 @@ LRESULT CALLBACK NewstoryListWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM
data->redrawTimer.Start(100);
break;
+ case NSM_CLEAR:
+ data->items.clear();
+
+ data->redrawTimer.Stop();
+ data->redrawTimer.Start(100);
+ break;
+
case NSM_GETARRAY:
return (LRESULT)&data->items;