From f8e5af3518344dac7c885a7880bbd421ea56116d Mon Sep 17 00:00:00 2001 From: Paolo Borelli Date: Mon, 18 Apr 2005 14:45:18 +0000 Subject: constify some vars. ditto. 2005-04-18 Paolo Borelli * shell/ev-stock-icons.c: constify some vars. * shell/ev-window.c: ditto. --- diff --git a/ChangeLog b/ChangeLog index 7e82927..fd2a33f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,7 @@ -2005-04-18 Marco Pesenti Gritti +2005-04-18 Paolo Borelli - * ps/ps-document.c: (get_page_orientation): - - Respect document orientation + * shell/ev-stock-icons.c: constify some vars. + * shell/ev-window.c: ditto. 2005-04-17 Nickolay V. Shmyrev diff --git a/shell/ev-stock-icons.c b/shell/ev-stock-icons.c index f60697d..2dc9a88 100644 --- a/shell/ev-stock-icons.c +++ b/shell/ev-stock-icons.c @@ -35,7 +35,7 @@ typedef struct { } EvStockIcon; /* Evince stock icons from gnome-icon-theme */ -static EvStockIcon stock_icons [] = { +static const EvStockIcon stock_icons [] = { { EV_STOCK_ZOOM_PAGE, "stock_zoom-page" }, { EV_STOCK_ZOOM_WIDTH, "stock_zoom-page-width" }, { EV_STOCK_LEAVE_FULLSCREEN, "stock_leave-fullscreen" } diff --git a/shell/ev-window.c b/shell/ev-window.c index ec17680..ed21fff 100644 --- a/shell/ev-window.c +++ b/shell/ev-window.c @@ -135,7 +135,7 @@ struct _EvWindowPrivate { EggRecentViewGtk *recent_view; }; -static GtkTargetEntry ev_drop_types[] = { +static const GtkTargetEntry ev_drop_types[] = { { "text/uri-list", 0, 0 } }; @@ -712,7 +712,7 @@ start_loading_document (EvWindow *ev_window, static gboolean is_file_supported (const gchar *mime_type) { - static char *supported_types [] = { + static const char * const supported_types [] = { "application/pdf", "application/postscript", "application/x-dvi", @@ -722,7 +722,7 @@ is_file_supported (const gchar *mime_type) NULL }; gint i; - + g_return_val_if_fail (mime_type != NULL, FALSE); if (mime_type_supported_by_gdk_pixbuf (mime_type)) @@ -2094,7 +2094,7 @@ ev_window_class_init (EvWindowClass *ev_window_class) } /* Normal items */ -static GtkActionEntry entries[] = { +static const GtkActionEntry entries[] = { { "File", NULL, N_("_File") }, { "Edit", NULL, N_("_Edit") }, { "View", NULL, N_("_View") }, @@ -2176,7 +2176,7 @@ static GtkActionEntry entries[] = { }; /* Toggle items */ -static GtkToggleActionEntry toggle_entries[] = { +static const GtkToggleActionEntry toggle_entries[] = { /* View Menu */ { "ViewToolbar", NULL, N_("_Toolbar"), "T", N_("Show or hide the toolbar"), @@ -2198,7 +2198,7 @@ static GtkToggleActionEntry toggle_entries[] = { G_CALLBACK (ev_window_cmd_view_page_width) }, }; -static GtkRadioActionEntry page_view_entries[] = { +static const GtkRadioActionEntry page_view_entries[] = { { "SinglePage", GTK_STOCK_DND, N_("Single"), NULL, N_("Show the document one page at a time"), PAGE_MODE_SINGLE_PAGE }, -- cgit v0.9.1