]> www.fi.muni.cz Git - evince.git/commitdiff
Fix for a minor code typo.
authorMichal Vaner <vorner+evince@ucw.cz>
Sun, 18 Jan 2009 18:51:33 +0000 (18:51 +0000)
committerNickolay V. Shmyrev <nshmyrev@src.gnome.org>
Sun, 18 Jan 2009 18:51:33 +0000 (18:51 +0000)
2009-01-18  Michal Vaner <vorner+evince@ucw.cz>

* shell/main.c (arguments_parse): Fix for a minor code typo.

svn path=/trunk/; revision=3355

ChangeLog
shell/main.c

index 42e73179e7a2b41f3a0cec397a7246cf5a47abea..69550d02ab887a5d1cd2fc960dc23ec58dc07adf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-01-18  Michal Vaner <vorner+evince@ucw.cz>
+
+       * shell/main.c (arguments_parse): Fix for a minor code typo.
+
 2009-01-18  Christian Persch  <chpe@gnome.org>
 
        * help/reference/Makefile.am:
index 37db7e434e2fc608cfac9922907618120215bc0c..a6a95cf75ac660022dce136f825388ba7fc09b35 100644 (file)
@@ -42,7 +42,7 @@
 static gchar   *ev_page_label;
 static gchar   *ev_find_string;
 static gboolean preview_mode = FALSE;
-static gboolean fullscren_mode = FALSE;
+static gboolean fullscreen_mode = FALSE;
 static gboolean presentation_mode = FALSE;
 static gboolean unlink_temp_file = FALSE;
 static gchar   *print_settings;
@@ -51,7 +51,7 @@ static const char **file_arguments = NULL;
 static const GOptionEntry goption_options[] =
 {
        { "page-label", 'p', 0, G_OPTION_ARG_STRING, &ev_page_label, N_("The page of the document to display."), N_("PAGE")},
-       { "fullscreen", 'f', 0, G_OPTION_ARG_NONE, &fullscren_mode, N_("Run evince in fullscreen mode"), NULL },
+       { "fullscreen", 'f', 0, G_OPTION_ARG_NONE, &fullscreen_mode, N_("Run evince in fullscreen mode"), NULL },
        { "presentation", 's', 0, G_OPTION_ARG_NONE, &presentation_mode, N_("Run evince in presentation mode"), NULL },
        { "preview", 'w', 0, G_OPTION_ARG_NONE, &preview_mode, N_("Run evince as a previewer"), NULL },
        { "find", 'l', 0, G_OPTION_ARG_STRING, &ev_find_string, N_("The word or phrase to find in the document"), N_("STRING")},
@@ -140,7 +140,7 @@ arguments_parse (void)
                ev_page_label = NULL;
        }
 
-       if (fullscren_mode)
+       if (fullscreen_mode)
                mode = EV_WINDOW_MODE_FULLSCREEN;
        else if (presentation_mode)
                mode = EV_WINDOW_MODE_PRESENTATION;