diff options
author | Jean-François Rameau <jframeau@cvs.gnome.org> | 2005-07-04 05:38:55 +0800 |
---|---|---|
committer | Jean-François Rameau <jframeau@src.gnome.org> | 2005-07-04 05:38:55 +0800 |
commit | 0e935c597fe2e3e00f672b98f77eaebf48660857 (patch) | |
tree | 158d7f1f7afde6398bb207805c77dc864018d6ae /src/ephy-notebook.c | |
parent | b0488b2a6c81ef558613c34fb398a111643b72e3 (diff) | |
download | gsoc2013-epiphany-0e935c597fe2e3e00f672b98f77eaebf48660857.tar.gz gsoc2013-epiphany-0e935c597fe2e3e00f672b98f77eaebf48660857.tar.zst gsoc2013-epiphany-0e935c597fe2e3e00f672b98f77eaebf48660857.zip |
EphyCookie's expires field is now of time_t type (fixes gcc 4.0 warning).
2005-07-03 Jean-François Rameau <jframeau@cvs.gnome.org>
* embed/ephy-cookie-manager.h:
EphyCookie's expires field is now of time_t type (fixes gcc 4.0 warning).
* embed/ephy-favicon-cache.c:
* lib/ephy-file-helpers.c:
* lib/ephy-langs.c:
* lib/ephy-node-db.c:
* lib/ephy-node.c:
* lib/ephy-state.c:
* lib/egg/eggtraymanager.c:
* src/ephy-extensions-manager.c:
* src/ephy-main.c:
* src/ephy-notebook.c:
* src/ephy-session.c:
* src/ephy-window.c:
Fixes more signed/unsigned problems with gcc 4.0.
Diffstat (limited to 'src/ephy-notebook.c')
-rw-r--r-- | src/ephy-notebook.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c index bd953fca7..82e13203d 100644 --- a/src/ephy-notebook.c +++ b/src/ephy-notebook.c @@ -725,7 +725,7 @@ notebook_drag_data_received_cb (GtkWidget* widget, GdkDragContext *context, char **split; /* URL_TYPE has format: url \n title */ - split = g_strsplit (selection_data->data, "\n", 2); + split = g_strsplit ((const gchar *)selection_data->data, "\n", 1); if (split != NULL && split[0] != NULL && split[0][0] != '\0') { ephy_link_open (EPHY_LINK (notebook), split[0], tab, |