diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-02-05 06:25:27 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-02-05 06:25:27 +0800 |
commit | 74c61ab583069d84e242400b064ab0f1ca828e29 (patch) | |
tree | a4cda37f86cc5d028f6e6990267639de8cbf6c79 /lib/widgets/ephy-zoom-action.h | |
parent | 0d384021eea98605ab92c8b8842a9c0c8e9240b3 (diff) | |
download | gsoc2013-epiphany-74c61ab583069d84e242400b064ab0f1ca828e29.tar.gz gsoc2013-epiphany-74c61ab583069d84e242400b064ab0f1ca828e29.tar.zst gsoc2013-epiphany-74c61ab583069d84e242400b064ab0f1ca828e29.zip |
Fix toolbar overflow menu creation. Don't connect zoom control signals to
2004-02-04 Christian Persch <chpe@cvs.gnome.org>
* 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.
Diffstat (limited to 'lib/widgets/ephy-zoom-action.h')
-rw-r--r-- | lib/widgets/ephy-zoom-action.h | 10 |
1 files changed, 5 insertions, 5 deletions
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; |