2 #include "mwindowgui.h"
3 #include "recconfirmdelete.h"
7 #define _(String) gettext(String)
8 #define gettext_noop(String) String
9 #define N_(String) gettext_noop (String)
12 RecConfirmDelete::RecConfirmDelete(MWindow *mwindow)
13 : BC_Window(PROGRAM_NAME ": Confirm",
14 mwindow->gui->get_abs_cursor_x(1),
15 mwindow->gui->get_abs_cursor_y(1),
20 RecConfirmDelete::~RecConfirmDelete()
24 int RecConfirmDelete::create_objects(char *string)
28 sprintf(string2, _("Delete this file and %s?"), string);
29 add_subwindow(new BC_Title(x, y, string2));
31 add_subwindow(new BC_OKButton(x, y));
33 add_subwindow(new BC_CancelButton(x, y));