From 74c61ab583069d84e242400b064ab0f1ca828e29 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Wed, 4 Feb 2004 22:25:27 +0000 Subject: Fix toolbar overflow menu creation. Don't connect zoom control signals to 2004-02-04 Christian Persch * lib/widgets/ephy-zoom-action.c: (ephy_zoom_action_get_type), (zoom_to_level_cb), (connect_proxy), (proxy_menu_activate_cb), (create_menu_item), (ephy_zoom_action_class_init): * lib/widgets/ephy-zoom-action.h: * lib/widgets/ephy-zoom-control.c: (ephy_zoom_control_class_init): * src/ephy-history-window.c: (cmd_delete), Fix toolbar overflow menu creation. Don't connect zoom control signals to a menu item. --- lib/widgets/ephy-zoom-action.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/widgets/ephy-zoom-action.h') diff --git a/lib/widgets/ephy-zoom-action.h b/lib/widgets/ephy-zoom-action.h index d01716179..12d55c903 100644 --- a/lib/widgets/ephy-zoom-action.h +++ b/lib/widgets/ephy-zoom-action.h @@ -31,11 +31,11 @@ G_BEGIN_DECLS #define EPHY_IS_ZOOM_ACTION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), EPHY_TYPE_ZOOM_ACTION)) #define EPHY_ZOOM_ACTION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), EPHY_TYPE_ZOOM_ACTION, EphyZoomActionClass)) -typedef struct _EphyZoomAction EphyZoomAction; -typedef struct _EphyZoomActionClass EphyZoomActionClass; -typedef struct _EphyZoomActionPrivate EphyZoomActionPrivate; +typedef struct EphyZoomAction EphyZoomAction; +typedef struct EphyZoomActionClass EphyZoomActionClass; +typedef struct EphyZoomActionPrivate EphyZoomActionPrivate; -struct _EphyZoomAction +struct EphyZoomAction { GtkAction parent; @@ -43,7 +43,7 @@ struct _EphyZoomAction EphyZoomActionPrivate *priv; }; -struct _EphyZoomActionClass +struct EphyZoomActionClass { GtkActionClass parent_class; -- cgit