summaryrefslogtreecommitdiff
path: root/plugins/Popup/src/history.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Popup/src/history.cpp')
-rw-r--r--plugins/Popup/src/history.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/Popup/src/history.cpp b/plugins/Popup/src/history.cpp
index 683ed6ec23..f1adc8eb80 100644
--- a/plugins/Popup/src/history.cpp
+++ b/plugins/Popup/src/history.cpp
@@ -127,8 +127,10 @@ static INT_PTR CALLBACK HistoryDlgProc(HWND hwnd, UINT msg, WPARAM, LPARAM lPara
{
oldWidth = 0;
HWND hwndList = GetDlgItem(hwnd, IDC_POPUP_LIST);
- for (auto &it : arPopupHistory)
+ for (auto &it : arPopupHistory) {
+ (void)(it);
ListBox_SetItemData(hwndList, ListBox_AddString(hwndList, L""), 0);
+ }
Window_SetIcon_IcoLib(hwnd, GetIconHandle(IDI_HISTORY));