diff options
Diffstat (limited to 'src/window.cpp')
-rw-r--r-- | src/window.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/window.cpp b/src/window.cpp index d59c39cef..787c607f7 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -2009,27 +2009,6 @@ void UpdateWindows() DrawMouseCursor(); } - -/** - * In a window with menu_d custom extension, retrieve the menu item number from a position - * @param w Window holding the menu items - * @param x X coordinate of the position - * @param y Y coordinate of the position - * @return Index number of the menu item, or \c -1 if no valid selection under position - */ -int GetMenuItemIndex(const Window *w, int x, int y) -{ - if ((x -= w->left) >= 0 && x < w->width && (y -= w->top + 1) >= 0) { - y /= 10; - - if (y < WP(w, const menu_d).item_count && - !HasBit(WP(w, const menu_d).disabled_items, y)) { - return y; - } - } - return -1; -} - /** * Mark window as dirty (in need of repainting) * @param cls Window class |