Remove unused "zoom-parameters-changed" signal.

2008-08-06  Christian Neumair  <cneumair@gnome.org>

	* libnautilus-private/nautilus-view.c (nautilus_view_base_init):
	* libnautilus-private/nautilus-view.h:
	Remove unused "zoom-parameters-changed" signal.

svn path=/trunk/; revision=14455
This commit is contained in:
Christian Neumair 2008-08-06 10:15:48 +00:00 committed by Christian Neumair
parent bd8931b354
commit 520f42cf36
3 changed files with 7 additions and 13 deletions

View file

@ -1,3 +1,9 @@
2008-08-06 Christian Neumair <cneumair@gnome.org>
* libnautilus-private/nautilus-view.c (nautilus_view_base_init):
* libnautilus-private/nautilus-view.h:
Remove unused "zoom-parameters-changed" signal.
2008-08-06 Christian Neumair <cneumair@gnome.org>
* src/nautilus-navigation-window.c (real_sync_zoom_widgets),

View file

@ -27,7 +27,6 @@
enum {
TITLE_CHANGED,
ZOOM_PARAMETERS_CHANGED,
ZOOM_LEVEL_CHANGED,
LAST_SIGNAL
};
@ -48,16 +47,7 @@ nautilus_view_base_init (gpointer g_class)
NULL, NULL,
g_cclosure_marshal_VOID__VOID,
G_TYPE_NONE, 0);
nautilus_view_signals[ZOOM_PARAMETERS_CHANGED] =
g_signal_new ("zoom_parameters_changed",
NAUTILUS_TYPE_VIEW,
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (NautilusViewIface, zoom_parameters_changed),
NULL, NULL,
g_cclosure_marshal_VOID__VOID,
G_TYPE_NONE, 0);
nautilus_view_signals[ZOOM_LEVEL_CHANGED] =
g_signal_new ("zoom_level_changed",
NAUTILUS_TYPE_VIEW,

View file

@ -51,8 +51,6 @@ struct _NautilusViewIface
/* emitted when the view-specific title as returned by get_title changes */
void (* title_changed) (NautilusView *view);
/* BONOBOTODO: remove this? */
void (* zoom_parameters_changed)(NautilusView *view);
void (* zoom_level_changed) (NautilusView *view);
/* VTable: */