diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-01-28 04:29:36 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-01-28 04:29:36 +0800 |
commit | f8fa4046d19f289188dfeebcc57ece73e949f433 (patch) | |
tree | 5cb9b95f109d7cd33eaa3aa4474cf28d20867bd9 /src/ephy-activation.h | |
parent | ca5f11319afff03fbd1421ef3f0063727f76d955 (diff) | |
download | gsoc2013-epiphany-f8fa4046d19f289188dfeebcc57ece73e949f433.tar gsoc2013-epiphany-f8fa4046d19f289188dfeebcc57ece73e949f433.tar.gz gsoc2013-epiphany-f8fa4046d19f289188dfeebcc57ece73e949f433.tar.bz2 gsoc2013-epiphany-f8fa4046d19f289188dfeebcc57ece73e949f433.tar.lz gsoc2013-epiphany-f8fa4046d19f289188dfeebcc57ece73e949f433.tar.xz gsoc2013-epiphany-f8fa4046d19f289188dfeebcc57ece73e949f433.tar.zst gsoc2013-epiphany-f8fa4046d19f289188dfeebcc57ece73e949f433.zip |
Add required GError** params, and actually set the error when returning
2006-01-27 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-activation.c: (ephy_activation_load_url),
(ephy_activation_load_session),
(ephy_activation_open_bookmarks_editor):
* src/ephy-activation.h:
Add required GError** params, and actually set the
error when returning FALSE.
Diffstat (limited to 'src/ephy-activation.h')
-rw-r--r-- | src/ephy-activation.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ephy-activation.h b/src/ephy-activation.h index 0776a919f..030c9a8d7 100644 --- a/src/ephy-activation.h +++ b/src/ephy-activation.h @@ -29,7 +29,8 @@ G_BEGIN_DECLS gboolean ephy_activation_load_url (EphyDbus *ephy_dbus, char *url, char *options, - guint startup_id); + guint startup_id, + GError **error); gboolean ephy_activation_load_session (EphyDbus *ephy_dbus, char *session_name, @@ -37,7 +38,8 @@ gboolean ephy_activation_load_session (EphyDbus *ephy_dbus, GError **error); gboolean ephy_activation_open_bookmarks_editor (EphyDbus *ephy_dbus, - guint user_time); + guint user_time, + GError **error); G_END_DECLS |