mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-19 20:38:08 +01:00
Removed parameters to function 'open_window_menu_core' that were not used
This commit is contained in:
committed by
Carlos R. Mafra
parent
c42d6822de
commit
0717a0f07e
@@ -560,7 +560,7 @@ static void updateMenuForWindow(WMenu * menu, WWindow * wwin)
|
|||||||
wMenuRealize(menu);
|
wMenuRealize(menu);
|
||||||
}
|
}
|
||||||
|
|
||||||
static WMenu *open_window_menu_core(WWindow *wwin, int x, int y)
|
static WMenu *open_window_menu_core(WWindow *wwin)
|
||||||
{
|
{
|
||||||
WScreen *scr = wwin->screen_ptr;
|
WScreen *scr = wwin->screen_ptr;
|
||||||
WMenu *menu;
|
WMenu *menu;
|
||||||
@@ -607,7 +607,7 @@ void OpenWindowMenu(WWindow *wwin, int x, int y, int keyboard)
|
|||||||
{
|
{
|
||||||
WMenu *menu;
|
WMenu *menu;
|
||||||
|
|
||||||
menu = open_window_menu_core(wwin, x, y);
|
menu = open_window_menu_core(wwin);
|
||||||
if (!menu)
|
if (!menu)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@@ -630,7 +630,7 @@ void OpenWindowMenu2(WWindow *wwin, int x, int y, int keyboard)
|
|||||||
int i;
|
int i;
|
||||||
WMenu *menu;
|
WMenu *menu;
|
||||||
|
|
||||||
menu = open_window_menu_core(wwin, x, y);
|
menu = open_window_menu_core(wwin);
|
||||||
if (!menu)
|
if (!menu)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@@ -653,7 +653,7 @@ void OpenMiniwindowMenu(WWindow * wwin, int x, int y)
|
|||||||
{
|
{
|
||||||
WMenu *menu;
|
WMenu *menu;
|
||||||
|
|
||||||
menu = open_window_menu_core(wwin, x, y);
|
menu = open_window_menu_core(wwin);
|
||||||
if (!menu)
|
if (!menu)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user