-2005-04-18 Marco Pesenti Gritti <mpg@redhat.com>
+2005-04-18 Paolo Borelli <pborelli@katamail.com>
- * 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 <nshmyrev@yandex.ru>
} 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" }
EggRecentViewGtk *recent_view;
};
-static GtkTargetEntry ev_drop_types[] = {
+static const GtkTargetEntry ev_drop_types[] = {
{ "text/uri-list", 0, 0 }
};
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",
NULL
};
gint i;
-
+
g_return_val_if_fail (mime_type != NULL, FALSE);
if (mime_type_supported_by_gdk_pixbuf (mime_type))
}
/* Normal items */
-static GtkActionEntry entries[] = {
+static const GtkActionEntry entries[] = {
{ "File", NULL, N_("_File") },
{ "Edit", NULL, N_("_Edit") },
{ "View", NULL, N_("_View") },
};
/* Toggle items */
-static GtkToggleActionEntry toggle_entries[] = {
+static const GtkToggleActionEntry toggle_entries[] = {
/* View Menu */
{ "ViewToolbar", NULL, N_("_Toolbar"), "<shift><control>T",
N_("Show or hide the toolbar"),
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 },