From a61ac4664d55cddb18d2d861e76629bd07676129 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 8 Feb 2016 22:44:39 +0300 Subject: Add some missing const. --- src/gui/popups/popupmenu.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/gui/popups/popupmenu.cpp') diff --git a/src/gui/popups/popupmenu.cpp b/src/gui/popups/popupmenu.cpp index b9fc252b8..a7c493b8e 100644 --- a/src/gui/popups/popupmenu.cpp +++ b/src/gui/popups/popupmenu.cpp @@ -989,7 +989,7 @@ void PopupMenu::showWindowPopup(Window *const window) showPopup(mX, mY); } -void PopupMenu::addWindowMenu(Window *const window) +void PopupMenu::addWindowMenu(const Window *const window) { if (!window) return; @@ -1756,7 +1756,7 @@ void PopupMenu::showItemPopup(const int x, const int y, } void PopupMenu::showItemPopup(const int x, const int y, - Item *const item) + const Item *const item) { mX = x; mY = y; @@ -1810,7 +1810,9 @@ void PopupMenu::showItemPopup(const int x, const int y, showPopup(x, y); } -void PopupMenu::showDropPopup(const int x, const int y, Item *const item) +void PopupMenu::showDropPopup(const int x, + const int y, + const Item *const item) { mX = x; mY = y; -- cgit v1.2.3-70-g09d2