Trim trailing white spaces on empty lines.
[geeqie.git] / src / uri_utils.c
index 5b81223..a60e492 100644 (file)
@@ -30,7 +30,7 @@ gchar **uris_from_pathlist(GList *list)
                gchar *local_path = path_from_utf8(path);
                uris[i] = g_filename_to_uri(local_path, NULL, NULL);
                g_free(local_path);
-               
+
                i++;
                work = work->next;
                }
@@ -51,7 +51,7 @@ gboolean uri_selection_data_set_uris_from_filelist(GtkSelectionData *selection_d
 {
        gchar **uris = uris_from_filelist(list);
        gboolean ret = gtk_selection_data_set_uris(selection_data, uris);
-       if (!ret) 
+       if (!ret)
                {
                char *str = g_strjoinv("\r\n", uris);
                ret = gtk_selection_data_set_text(selection_data, str, -1);