Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaolo Borelli <pborelli@katamail.com>2005-04-18 14:45:18 (GMT)
committer Paolo Borelli <pborelli@src.gnome.org>2005-04-18 14:45:18 (GMT)
commitf8e5af3518344dac7c885a7880bbd421ea56116d (patch)
tree6bc76f09babd5a508133f262596e28de32ef07d2
parentb8261d154d9bd065eb6b557b1c9c80e47ea2b4d1 (diff)
constify some vars. ditto.
2005-04-18 Paolo Borelli <pborelli@katamail.com> * shell/ev-stock-icons.c: constify some vars. * shell/ev-window.c: ditto.
-rw-r--r--ChangeLog7
-rw-r--r--shell/ev-stock-icons.c2
-rw-r--r--shell/ev-window.c12
3 files changed, 10 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index 7e82927..fd2a33f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,7 @@
-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>
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"), "<shift><control>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 },