Move gui_drag_save_selection() into the same file as gui_drag_save_object() as they

will have common code when implemented.

svn path=/trunk/netsurf/; revision=6859
This commit is contained in:
Chris Young 2009-03-24 18:53:22 +00:00
parent ede9c4858d
commit 5b2d816d86
2 changed files with 6 additions and 5 deletions

View File

@ -48,10 +48,6 @@ void ami_clipboard_free(void)
if(iffh) FreeIFF(iffh);
}
void gui_drag_save_selection(struct selection *s, struct gui_window *g)
{
}
void gui_start_selection(struct gui_window *g)
{
}

View File

@ -2879,7 +2879,12 @@ void gui_download_window_done(struct gui_download_window *dw)
void gui_drag_save_object(gui_save_type type, struct content *c,
struct gui_window *g)
{
DebugPrintF("gui_drag_save_object\n");
// DebugPrintF("gui_drag_save_object\n");
}
void gui_drag_save_selection(struct selection *s, struct gui_window *g)
{
// DebugPrintF("gui_drag_save_selection\n");
}
void gui_create_form_select_menu(struct browser_window *bw,