diff options
author | Jaap Haitsma <jaap@haitsma.org> | 2007-07-01 21:45:39 +0800 |
---|---|---|
committer | Jaap A. Haitsma <jhaitsma@src.gnome.org> | 2007-07-01 21:45:39 +0800 |
commit | 4b28dd2019b62d460840d7bf29767f86ed985869 (patch) | |
tree | f9dc30a3477456cdbf3a4567cd9604b338d0bccf /lib/egg/egg-toolbar-editor.c | |
parent | 826e46081e71c48e304f9f358207909e4e364b04 (diff) | |
download | gsoc2013-epiphany-4b28dd2019b62d460840d7bf29767f86ed985869.tar gsoc2013-epiphany-4b28dd2019b62d460840d7bf29767f86ed985869.tar.gz gsoc2013-epiphany-4b28dd2019b62d460840d7bf29767f86ed985869.tar.bz2 gsoc2013-epiphany-4b28dd2019b62d460840d7bf29767f86ed985869.tar.lz gsoc2013-epiphany-4b28dd2019b62d460840d7bf29767f86ed985869.tar.xz gsoc2013-epiphany-4b28dd2019b62d460840d7bf29767f86ed985869.tar.zst gsoc2013-epiphany-4b28dd2019b62d460840d7bf29767f86ed985869.zip |
script that syncs local toolbar editor copy with the one in libegg SVN
2007-07-01 Jaap Haitsma <jaap@haitsma.org>
* lib/egg/update-toolbareditor-from-libegg: script that syncs local
toolbar editor copy with the one in libegg SVN
* lib/egg/egg*: sync with toolbar editor in libegg. Sync obtained by
running update-toolbareditor-from-libegg
* lib/egg/eggintl.h: removed not needed anymore by egg-toolbareditor
* lib/egg/Makefile.am: remove eggintl.h
svn path=/trunk/; revision=7106
Diffstat (limited to 'lib/egg/egg-toolbar-editor.c')
-rw-r--r-- | lib/egg/egg-toolbar-editor.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/egg/egg-toolbar-editor.c b/lib/egg/egg-toolbar-editor.c index 5660408a2..fdf6e3f0f 100644 --- a/lib/egg/egg-toolbar-editor.c +++ b/lib/egg/egg-toolbar-editor.c @@ -1,5 +1,5 @@ /* - * Copyright © 2003 Marco Pesenti Gritti + * Copyright (C) 2003 Marco Pesenti Gritti * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * $Id$ */ @@ -22,7 +22,6 @@ #include "egg-toolbar-editor.h" #include "egg-editable-toolbar.h" -#include "eggintl.h" #include <string.h> #include <libxml/tree.h> @@ -35,6 +34,7 @@ #include <gtk/gtkstock.h> #include <gtk/gtkhbox.h> #include <gtk/gtk.h> +#include <glib/gi18n.h> static const GtkTargetEntry dest_drag_types[] = { {EGG_TOOLBAR_ITEM_TYPE, GTK_TARGET_SAME_APP, 0}, @@ -78,7 +78,7 @@ egg_toolbar_editor_get_type (void) if (G_UNLIKELY (type == 0)) { - const GTypeInfo our_info = { + static const GTypeInfo our_info = { sizeof (EggToolbarEditorClass), NULL, /* base_init */ NULL, /* base_finalize */ |