diff options
author | Christian Neumair <cneumair@src.gnome.org> | 2003-05-17 20:43:34 +0800 |
---|---|---|
committer | Christian Neumair <cneumair@src.gnome.org> | 2003-05-17 20:43:34 +0800 |
commit | da4bacb5a3de0dafe863ea82aea78d2e40731730 (patch) | |
tree | e31bad9600bf78b6e2a6523091e3af0e613941ab /src/bookmarks | |
parent | e5d335763657c0ebf4d464f4bc1d81542220141b (diff) | |
download | gsoc2013-epiphany-da4bacb5a3de0dafe863ea82aea78d2e40731730.tar gsoc2013-epiphany-da4bacb5a3de0dafe863ea82aea78d2e40731730.tar.gz gsoc2013-epiphany-da4bacb5a3de0dafe863ea82aea78d2e40731730.tar.bz2 gsoc2013-epiphany-da4bacb5a3de0dafe863ea82aea78d2e40731730.tar.lz gsoc2013-epiphany-da4bacb5a3de0dafe863ea82aea78d2e40731730.tar.xz gsoc2013-epiphany-da4bacb5a3de0dafe863ea82aea78d2e40731730.tar.zst gsoc2013-epiphany-da4bacb5a3de0dafe863ea82aea78d2e40731730.zip |
Fixed many issues mentioned in #112781.
Diffstat (limited to 'src/bookmarks')
-rw-r--r-- | src/bookmarks/ephy-bookmark-action.c | 6 | ||||
-rw-r--r-- | src/bookmarks/ephy-bookmark-properties.c | 6 | ||||
-rw-r--r-- | src/bookmarks/ephy-bookmarks-editor.c | 6 | ||||
-rw-r--r-- | src/bookmarks/ephy-bookmarks.c | 6 | ||||
-rw-r--r-- | src/bookmarks/ephy-new-bookmark.c | 6 | ||||
-rw-r--r-- | src/bookmarks/ephy-topic-action.c | 4 |
6 files changed, 29 insertions, 5 deletions
diff --git a/src/bookmarks/ephy-bookmark-action.c b/src/bookmarks/ephy-bookmark-action.c index cd08ba66c..cbb49007f 100644 --- a/src/bookmarks/ephy-bookmark-action.c +++ b/src/bookmarks/ephy-bookmark-action.c @@ -16,7 +16,11 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include <libgnome/gnome-i18n.h> +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include <bonobo/bonobo-i18n.h> #include "ephy-bookmark-action.h" #include "ephy-bookmarks.h" diff --git a/src/bookmarks/ephy-bookmark-properties.c b/src/bookmarks/ephy-bookmark-properties.c index 5445a7bfe..f2b20f931 100644 --- a/src/bookmarks/ephy-bookmark-properties.c +++ b/src/bookmarks/ephy-bookmark-properties.c @@ -17,6 +17,10 @@ * */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include "ephy-bookmark-properties.h" #include "ephy-topics-selector.h" #include "ephy-debug.h" @@ -33,7 +37,7 @@ #include <gtk/gtklabel.h> #include <gtk/gtkmisc.h> #include <gtk/gtkscrolledwindow.h> -#include <libgnome/gnome-i18n.h> +#include <bonobo/bonobo-i18n.h> static void ephy_bookmark_properties_class_init (EphyBookmarkPropertiesClass *klass); static void ephy_bookmark_properties_init (EphyBookmarkProperties *editor); diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index 4745a18d8..ce4898f78 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -17,6 +17,10 @@ * */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include <gtk/gtktable.h> #include <gtk/gtklabel.h> #include <gtk/gtkstock.h> @@ -25,7 +29,7 @@ #include <gtk/gtkhbox.h> #include <gtk/gtkvbox.h> #include <gdk/gdkkeysyms.h> -#include <libgnome/gnome-i18n.h> +#include <bonobo/bonobo-i18n.h> #include <libgnome/gnome-program.h> #include <libgnomeui/gnome-stock-icons.h> #include <string.h> diff --git a/src/bookmarks/ephy-bookmarks.c b/src/bookmarks/ephy-bookmarks.c index 5bd807610..791440049 100644 --- a/src/bookmarks/ephy-bookmarks.c +++ b/src/bookmarks/ephy-bookmarks.c @@ -18,6 +18,10 @@ * $Id$ */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include "ephy-bookmarks.h" #include "ephy-file-helpers.h" #include "ephy-shell.h" @@ -29,7 +33,7 @@ #include "ephy-bookmarks-export.h" #include <string.h> -#include <libgnome/gnome-i18n.h> +#include <bonobo/bonobo-i18n.h> #include <libgnomevfs/gnome-vfs-utils.h> #define EPHY_BOOKMARKS_XML_VERSION "0.1" diff --git a/src/bookmarks/ephy-new-bookmark.c b/src/bookmarks/ephy-new-bookmark.c index b6fd1dcdf..0ddcef6c0 100644 --- a/src/bookmarks/ephy-new-bookmark.c +++ b/src/bookmarks/ephy-new-bookmark.c @@ -17,6 +17,10 @@ * */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include <gtk/gtktable.h> #include <gtk/gtklabel.h> #include <gtk/gtkentry.h> @@ -25,7 +29,7 @@ #include <gtk/gtkstock.h> #include <gtk/gtkscrolledwindow.h> #include <gtk/gtkeditable.h> -#include <libgnome/gnome-i18n.h> +#include <bonobo/bonobo-i18n.h> #include "ephy-new-bookmark.h" #include "ephy-state.h" diff --git a/src/bookmarks/ephy-topic-action.c b/src/bookmarks/ephy-topic-action.c index ee06a1f6b..448e7ffb6 100644 --- a/src/bookmarks/ephy-topic-action.c +++ b/src/bookmarks/ephy-topic-action.c @@ -18,6 +18,10 @@ * $Id$ */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include "ephy-node-common.h" #include "ephy-topic-action.h" #include "ephy-bookmarks.h" |