This commit is contained in:
mcafee%netscape.com 1998-08-14 00:26:37 +00:00
Родитель 74e432e377
Коммит 6ef3afdae9
1 изменённых файлов: 7 добавлений и 9 удалений

Просмотреть файл

@ -6155,10 +6155,10 @@ FE_SecurityDialog (MWContext *context, int state, XP_Bool *prefs_toggle)
/* Temporary stub. */ /* Temporary stub. */
XP_Bool XP_Bool
FE_Select(MWContext *pContext, XFE_SelectDialog(MWContext *pContext,
char *pMessage, const char *pMessage,
char **pList, const char **pList,
int *pCount) int16 *pCount)
{ {
int i; int i;
char *message = 0; char *message = 0;
@ -6179,14 +6179,13 @@ FE_Select(MWContext *pContext,
return FALSE; return FALSE;
} }
/* /*
* temporary UI until FE implements this function as a single dialog box * temporary UI until FE implements this function as a single dialog box
*/ */
XP_Bool XP_Bool
FE_CheckConfirm (MWContext *pContext, XFE_CheckConfirm(MWContext *pContext,
char *pConfirmMessage, const char *pConfirmMessage,
char *pCheckMessage, const char *pCheckMessage,
const char *pOKMessage, /* text on the OK button */ const char *pOKMessage, /* text on the OK button */
const char *pCancelMessage, /* text on the cancel button */ const char *pCancelMessage, /* text on the cancel button */
XP_Bool *pChecked) XP_Bool *pChecked)
@ -6195,4 +6194,3 @@ FE_CheckConfirm (MWContext *pContext,
*pChecked = FE_Confirm (pContext, pCheckMessage); *pChecked = FE_Confirm (pContext, pCheckMessage);
return userHasAccepted; return userHasAccepted;
} }