diff options
author | Christian Persch <chpe@src.gnome.org> | 2008-09-25 04:02:55 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2008-09-25 04:02:55 +0800 |
commit | 659169914fa8da235b35730c688a23c3caca8b3a (patch) | |
tree | ef6977c62d09ba7094c3646eb3dfd0c10b80cb62 /src/bookmarks | |
parent | e1d7349c1c0191c371c11a9011eb288187e2cc9d (diff) | |
download | gsoc2013-epiphany-659169914fa8da235b35730c688a23c3caca8b3a.tar gsoc2013-epiphany-659169914fa8da235b35730c688a23c3caca8b3a.tar.gz gsoc2013-epiphany-659169914fa8da235b35730c688a23c3caca8b3a.tar.bz2 gsoc2013-epiphany-659169914fa8da235b35730c688a23c3caca8b3a.tar.lz gsoc2013-epiphany-659169914fa8da235b35730c688a23c3caca8b3a.tar.xz gsoc2013-epiphany-659169914fa8da235b35730c688a23c3caca8b3a.tar.zst gsoc2013-epiphany-659169914fa8da235b35730c688a23c3caca8b3a.zip |
Remove libgnome and libgnomeui dependency, using EggSMClient instead of GnomeClient.
svn path=/trunk/; revision=8541
Diffstat (limited to 'src/bookmarks')
-rw-r--r-- | src/bookmarks/ephy-bookmarks-editor.c | 1 | ||||
-rw-r--r-- | src/bookmarks/ephy-bookmarks.c | 2 | ||||
-rw-r--r-- | src/bookmarks/ephy-open-tabs-action.c | 12 |
3 files changed, 6 insertions, 9 deletions
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index 8f6a5cc27..403c21f33 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -23,7 +23,6 @@ #include <gtk/gtk.h> #include <gdk/gdkkeysyms.h> #include <glib/gi18n.h> -#include <libgnomeui/gnome-stock-icons.h> #include <string.h> #include "ephy-bookmarks-editor.h" diff --git a/src/bookmarks/ephy-bookmarks.c b/src/bookmarks/ephy-bookmarks.c index 15f635add..54ba2be15 100644 --- a/src/bookmarks/ephy-bookmarks.c +++ b/src/bookmarks/ephy-bookmarks.c @@ -128,7 +128,7 @@ enum LAST_SIGNAL }; -static guint ephy_bookmarks_signals[LAST_SIGNAL] = { 0 }; +static guint ephy_bookmarks_signals[LAST_SIGNAL]; static void ephy_bookmarks_class_init (EphyBookmarksClass *klass); static void ephy_bookmarks_init (EphyBookmarks *tab); diff --git a/src/bookmarks/ephy-open-tabs-action.c b/src/bookmarks/ephy-open-tabs-action.c index f3ea35830..8a5cceab8 100644 --- a/src/bookmarks/ephy-open-tabs-action.c +++ b/src/bookmarks/ephy-open-tabs-action.c @@ -20,7 +20,10 @@ #include "config.h" -#include "ephy-open-tabs-action.h" +#include <string.h> + +#include <glib/gi18n.h> +#include <gtk/gtk.h> #include "ephy-bookmarks.h" #include "ephy-bookmarks-ui.h" @@ -28,12 +31,7 @@ #include "ephy-link-action.h" #include "ephy-link.h" -#include <glib/gi18n.h> -#include <gtk/gtk.h> - -#include <libgnomevfs/gnome-vfs-uri.h> - -#include <string.h> +#include "ephy-open-tabs-action.h" static void activate_cb (GtkAction *action, |