diff options
Diffstat (limited to 'plugins/NewStory')
-rw-r--r-- | plugins/NewStory/src/history_menus.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/NewStory/src/history_menus.cpp b/plugins/NewStory/src/history_menus.cpp index 97739bb29f..2fd82c16e7 100644 --- a/plugins/NewStory/src/history_menus.cpp +++ b/plugins/NewStory/src/history_menus.cpp @@ -49,7 +49,8 @@ HMENU NSMenu_Build(NewstoryListData *data, ItemData *item) bShowEventActions = item->hEvent != 0; - NotifyEventHooks(hEventPreBuildMenu, item->hContact, (LPARAM)&item->dbe); + DB::EventInfo dbei(item->hEvent); + NotifyEventHooks(hEventPreBuildMenu, item->hContact, (LPARAM)&dbei); } else { bShowEventActions = false; |