aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@src.gnome.org>2003-08-30 01:19:55 +0800
committerMarco Pesenti Gritti <marco@src.gnome.org>2003-08-30 01:19:55 +0800
commita03cfa7451bad9af112897db73bd7eecc43e2f2c (patch)
tree69370d3c2b4cf3eec84c391c90146183d1d689eb /src
parentfe99ccbdd0f1655f4b50b7cd765a65932e7ce49f (diff)
downloadgsoc2013-epiphany-a03cfa7451bad9af112897db73bd7eecc43e2f2c.tar
gsoc2013-epiphany-a03cfa7451bad9af112897db73bd7eecc43e2f2c.tar.gz
gsoc2013-epiphany-a03cfa7451bad9af112897db73bd7eecc43e2f2c.tar.bz2
gsoc2013-epiphany-a03cfa7451bad9af112897db73bd7eecc43e2f2c.tar.lz
gsoc2013-epiphany-a03cfa7451bad9af112897db73bd7eecc43e2f2c.tar.xz
gsoc2013-epiphany-a03cfa7451bad9af112897db73bd7eecc43e2f2c.tar.zst
gsoc2013-epiphany-a03cfa7451bad9af112897db73bd7eecc43e2f2c.zip
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r--src/bookmarks/ephy-topic-action.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bookmarks/ephy-topic-action.h b/src/bookmarks/ephy-topic-action.h
index b85954873..51c3008ad 100644
--- a/src/bookmarks/ephy-topic-action.h
+++ b/src/bookmarks/ephy-topic-action.h
@@ -20,7 +20,7 @@
#define EPHY_TOPIC_ACTION_H
#include <gtk/gtk.h>
-#include <egg-action.h>
+#include <gtk/gtkaction.h>
#define EPHY_TYPE_TOPIC_ACTION (ephy_topic_action_get_type ())
#define EPHY_TOPIC_ACTION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EPHY_TYPE_TOPIC_ACTION, EphyTopicAction))
@@ -35,20 +35,20 @@ typedef struct EphyTopicActionPrivate EphyTopicActionPrivate;
struct _EphyTopicAction
{
- EggAction parent;
+ GtkAction parent;
EphyTopicActionPrivate *priv;
};
struct _EphyTopicActionClass
{
- EggActionClass parent_class;
+ GtkActionClass parent_class;
void (*go_location) (EphyTopicAction *action, char *location);
};
GType ephy_topic_action_get_type (void);
-EggAction *ephy_topic_action_new (const char *name,
+GtkAction *ephy_topic_action_new (const char *name,
guint id);
#endif