diff src/gtk/dnd.c @ 472:5100b89c44e1

2004-5-26 Brian Masney <masneyb@gftp.org> * src/gtk/dnd.c - when a URL is dropped on the connect button, log the URL that is received * src/gtk/gftp-gtk.c src/gtk/options_dialog.c - more 64 bit cleanups
author masneyb
date Thu, 27 May 2004 09:54:57 +0000
parents c5acf744ad79
children 39e9945288ea
line wrap: on
line diff
--- a/src/gtk/dnd.c	Thu May 20 16:35:09 2004 +0000
+++ b/src/gtk/dnd.c	Thu May 27 09:54:57 2004 +0000
@@ -123,7 +123,12 @@
 
       if (gftp_parse_url (current_wdata->request, 
                           (char *) selection_data->data) == 0)
-        ftp_connect (current_wdata, current_wdata->request, 1);
+        {
+          ftp_log (gftp_logging_misc, NULL,
+                   _("Received URL %s\n"), (char *) selection_data->data);
+
+          ftp_connect (current_wdata, current_wdata->request, 1);
+        }
     }
 }