diff options
Diffstat (limited to 'oldXMenu/AddPane.c')
-rw-r--r-- | oldXMenu/AddPane.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/oldXMenu/AddPane.c b/oldXMenu/AddPane.c index 54b55a150c9..6312aa2c70a 100644 --- a/oldXMenu/AddPane.c +++ b/oldXMenu/AddPane.c @@ -16,11 +16,11 @@ #include "XMenuInt.h" int -XMenuAddPane(display, menu, label, active) - Display *display; - register XMenu *menu; /* Menu object to be modified. */ - register char *label; /* Selection label. */ - int active; /* Make selection active? */ +XMenuAddPane(Display *display, register XMenu *menu, register char *label, int active) + + /* Menu object to be modified. */ + /* Selection label. */ + /* Make selection active? */ { register XMPane *pane; /* Newly created pane. */ register XMSelect *select; /* Initial selection for the new pane. */ |