diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2010-10-31 20:17:59 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2010-10-31 20:17:59 +0000 |
commit | 1eaf7ae9d7ff2adf3249176c155ae66dea08ecc3 (patch) | |
tree | d020778c6956a535dd35a4626b7857b36b775c20 /app/xsm/choose.c | |
parent | 0aea447cde00cd16718571f752213425ba2b2d23 (diff) |
Update to xsm 1.0.2
Diffstat (limited to 'app/xsm/choose.c')
-rw-r--r-- | app/xsm/choose.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/app/xsm/choose.c b/app/xsm/choose.c index e1711f9e6..c2a0c346e 100644 --- a/app/xsm/choose.c +++ b/app/xsm/choose.c @@ -59,16 +59,16 @@ static Pixel save_message_background; static int delete_session_phase = 0; static int break_lock_phase = 0; -Widget chooseSessionPopup; -Widget chooseSessionForm; -Widget chooseSessionLabel; -Widget chooseSessionListWidget; -Widget chooseSessionMessageLabel; -Widget chooseSessionLoadButton; -Widget chooseSessionDeleteButton; -Widget chooseSessionBreakLockButton; -Widget chooseSessionFailSafeButton; -Widget chooseSessionCancelButton; +static Widget chooseSessionPopup; +static Widget chooseSessionForm; +static Widget chooseSessionLabel; +static Widget chooseSessionListWidget; +static Widget chooseSessionMessageLabel; +static Widget chooseSessionLoadButton; +static Widget chooseSessionDeleteButton; +static Widget chooseSessionBreakLockButton; +static Widget chooseSessionFailSafeButton; +static Widget chooseSessionCancelButton; @@ -736,7 +736,7 @@ create_choose_session_popup(void) NULL); XtAddCallback (chooseSessionLoadButton, XtNcallback, - ChooseSessionLoadXtProc, 0); + ChooseSessionLoadXtProc, NULL); chooseSessionDeleteButton = XtVaCreateManagedWidget ( "chooseSessionDeleteButton", commandWidgetClass, chooseSessionForm, @@ -745,7 +745,7 @@ create_choose_session_popup(void) NULL); XtAddCallback (chooseSessionDeleteButton, XtNcallback, - ChooseSessionDeleteXtProc, 0); + ChooseSessionDeleteXtProc, NULL); chooseSessionBreakLockButton = XtVaCreateManagedWidget ( "chooseSessionBreakLockButton", @@ -755,7 +755,7 @@ create_choose_session_popup(void) NULL); XtAddCallback (chooseSessionBreakLockButton, XtNcallback, - ChooseSessionBreakLockXtProc, 0); + ChooseSessionBreakLockXtProc, NULL); chooseSessionFailSafeButton = XtVaCreateManagedWidget ( "chooseSessionFailSafeButton", commandWidgetClass, chooseSessionForm, @@ -764,7 +764,7 @@ create_choose_session_popup(void) NULL); XtAddCallback (chooseSessionFailSafeButton, XtNcallback, - ChooseSessionFailSafeXtProc, 0); + ChooseSessionFailSafeXtProc, NULL); chooseSessionCancelButton = XtVaCreateManagedWidget ( @@ -774,7 +774,7 @@ create_choose_session_popup(void) NULL); XtAddCallback (chooseSessionCancelButton, XtNcallback, - ChooseSessionCancelXtProc, 0); + ChooseSessionCancelXtProc, NULL); XtAppAddActions (appContext, choose_actions, XtNumber (choose_actions)); |