diff options
author | George Hazan <george.hazan@gmail.com> | 2023-12-21 12:03:30 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-12-21 12:03:30 +0300 |
commit | b9eefe3259b21cb1319f4d90bc0a6c89e2f9682f (patch) | |
tree | 5e450738077f97f20ae9b1f3b9b6446558f16050 /plugins/NewStory/src/history_dlg.cpp | |
parent | a37cb1ece9d185cc5071fc0cc9f8e5c1b6f1fe79 (diff) |
NewStory: fix for event's text in Bookmark window
Diffstat (limited to 'plugins/NewStory/src/history_dlg.cpp')
-rw-r--r-- | plugins/NewStory/src/history_dlg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NewStory/src/history_dlg.cpp b/plugins/NewStory/src/history_dlg.cpp index 3a60ea0766..c012b9651f 100644 --- a/plugins/NewStory/src/history_dlg.cpp +++ b/plugins/NewStory/src/history_dlg.cpp @@ -345,7 +345,7 @@ class CHistoryDlg : public CDlgBase auto *pItem = m_histCtrl->GetItem(i); if (pItem->fetch()) if (pItem->dbe.flags & DBEF_BOOKMARK) - m_bookmarks.AddItem(pItem->wtext, 0, i); + m_bookmarks.AddItem(pItem->getWBuf(), 0, i); } } } |