2004-09-06 [colin] 0.9.12cvs95
authorColin Leroy <colin@colino.net>
Mon, 6 Sep 2004 09:59:11 +0000 (09:59 +0000)
committerColin Leroy <colin@colino.net>
Mon, 6 Sep 2004 09:59:11 +0000 (09:59 +0000)
* src/summaryview.c
* src/mimeview.c
Fix dropped URIs

ChangeLog.claws
PATCHSETS
configure.ac
src/mimeview.c
src/summaryview.c

index 09353675eae0a08b84c53e9b73142d3ef886aa68..000aa2176db4b74fa6b17b89fad7984df619f7a8 100644 (file)
@@ -1,3 +1,9 @@
+2004-09-06 [colin]     0.9.12cvs95
+
+       * src/summaryview.c
+       * src/mimeview.c
+               Fix dropped URIs
+
 2004-09-06 [colin]     0.9.12cvs94
 
        * src/addressbook.c
index 86bc5f9cc51154dbbe4b42bfba8308ecdad6403c..f3cd2fd173e52cf3772254928d5f9a0f82f73e44 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
@@ -77,3 +77,4 @@
 ( cvs diff -u -r 1.226 -r 1.227 src/prefs_common.c; cvs diff -u -r 1.113 -r 1.114 src/prefs_common.h; cvs diff -u -r 1.443 -r 1.444 src/summaryview.c; ) > 0.9.12cvs92.patchset
 ( cvs diff -u -r 1.444 -r 1.445 src/summaryview.c; ) > 0.9.12cvs93.patchset
 ( cvs diff -u -r 1.70 -r 1.71 src/addressbook.c; cvs diff -u -r 1.5 -r 1.6 src/addressitem.h; cvs diff -u -r 1.14 -r 1.15 src/addritem.c; cvs diff -u -r 1.13 -r 1.14 src/addritem.h; ) > 0.9.12cvs94.patchset
+( cvs diff -u -r 1.445 -r 1.446 src/summaryview.c; cvs diff -u -r 1.125 -r 1.126 src/mimeview.c; ) > 0.9.12cvs95.patchset
index 36f352acfc5741a8a92909a074433badeadf51c7..4f506e775d1800b66980893085cea475da19ce01 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=9
 MICRO_VERSION=12
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=94
+EXTRA_VERSION=95
 EXTRA_RELEASE=
 
 if test \( $EXTRA_VERSION -eq 0 \) -o \( "x$EXTRA_RELEASE" != "x" \); then
index 22ac7cc5305646af99651e0418e72725c3163722..a7196e9ad3823e689cbf8d0062efe11affefe7c5 100644 (file)
@@ -960,7 +960,7 @@ static void mimeview_drag_data_get(GtkWidget            *widget,
                alertpanel_error
                        (_("Can't save the part of multipart message."));
 
-       uriname = g_strconcat("file:/", filename, NULL);
+       uriname = g_strconcat("file://", filename, NULL);
        gtk_selection_data_set(selection_data, selection_data->target, 8,
                               uriname, strlen(uriname));
 
index 6a0f468bc4ec78d6ed8219723cad43c69c6c4fc1..3c05129b3851992e956db30d4e6e4b1f1bfd696e 100644 (file)
@@ -4700,7 +4700,7 @@ static void summary_drag_data_get(GtkWidget        *widget,
                                (ctree, GTK_CTREE_NODE(cur->data));
                        tmp2 = procmsg_get_message_file(msginfo);
                        if (!tmp2) continue;
-                       tmp1 = g_strconcat("file:/", tmp2, NULL);
+                       tmp1 = g_strconcat("file://", tmp2, NULL);
                        g_free(tmp2);
 
                        if (!mail_list) {