aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2006-02-12 21:31:57 +0800
committerChristian Persch <chpe@src.gnome.org>2006-02-12 21:31:57 +0800
commitb149b82e5ccccd4dd7cd24c6b01d67341f8a1b60 (patch)
tree0729e3646134c1c10765a8712351fdbeafb85c39
parentf56cdbc0940bca10f38353efc786e901ae28196d (diff)
downloadgsoc2013-epiphany-b149b82e5ccccd4dd7cd24c6b01d67341f8a1b60.tar
gsoc2013-epiphany-b149b82e5ccccd4dd7cd24c6b01d67341f8a1b60.tar.gz
gsoc2013-epiphany-b149b82e5ccccd4dd7cd24c6b01d67341f8a1b60.tar.bz2
gsoc2013-epiphany-b149b82e5ccccd4dd7cd24c6b01d67341f8a1b60.tar.lz
gsoc2013-epiphany-b149b82e5ccccd4dd7cd24c6b01d67341f8a1b60.tar.xz
gsoc2013-epiphany-b149b82e5ccccd4dd7cd24c6b01d67341f8a1b60.tar.zst
gsoc2013-epiphany-b149b82e5ccccd4dd7cd24c6b01d67341f8a1b60.zip
Use the right action name.
2006-02-12 Christian Persch <chpe@cvs.gnome.org> * src/bookmarks/ephy-open-tabs-action.c: (node_added_cb), (node_removed_cb): Use the right action name.
-rw-r--r--ChangeLog7
-rw-r--r--src/bookmarks/ephy-open-tabs-action.c8
2 files changed, 11 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index e3e6d3efc..e1444f3b3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2006-02-12 Christian Persch <chpe@cvs.gnome.org>
+ * src/bookmarks/ephy-open-tabs-action.c: (node_added_cb),
+ (node_removed_cb):
+
+ Use the right action name.
+
+2006-02-12 Christian Persch <chpe@cvs.gnome.org>
+
* src/ephy-session.c: (save_yourself_cb):
Reqeust interaction with the client when there are
diff --git a/src/bookmarks/ephy-open-tabs-action.c b/src/bookmarks/ephy-open-tabs-action.c
index 7b54f5365..4dcc04dfa 100644
--- a/src/bookmarks/ephy-open-tabs-action.c
+++ b/src/bookmarks/ephy-open-tabs-action.c
@@ -68,10 +68,10 @@ node_added_cb (EphyNode *parent,
{
GObject *action_object;
GtkAction *action;
- char name[EPHY_TOPIC_ACTION_NAME_BUFFER_SIZE];
+ char name[EPHY_OPEN_TABS_ACTION_NAME_BUFFER_SIZE];
char accel[256];
- EPHY_TOPIC_ACTION_NAME_PRINTF (name, child);
+ EPHY_OPEN_TABS_ACTION_NAME_PRINTF (name, child);
/* FIXME !!!! */
action = gtk_action_new (name, _("Open in New _Tabs"), "Open this topic in tabs", NULL);
@@ -99,9 +99,9 @@ node_removed_cb (EphyNode *parent,
GtkActionGroup *action_group)
{
GtkAction *action;
- char name[EPHY_TOPIC_ACTION_NAME_BUFFER_SIZE];
+ char name[EPHY_OPEN_TABS_ACTION_NAME_BUFFER_SIZE];
- EPHY_TOPIC_ACTION_NAME_PRINTF (name, child);
+ EPHY_OPEN_TABS_ACTION_NAME_PRINTF (name, child);
action = gtk_action_group_get_action (action_group, name);