Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@src.gnome.org>2005-10-11 23:12:51 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2005-10-11 23:12:51 (GMT)
commit4b77c0328f6ae40dbb7b56cc678e89e60ff27240 (patch)
treec139baa84753be3465b2c13aa933b0346691a2ab
parent03602a3aae5df139f87416797abb776e3522f29f (diff)
Fixed warnings on reload and probably crash reason.
* shell/ev-window.c: (ev_window_setup_document): Fixed warnings on reload and probably crash reason.
-rw-r--r--ChangeLog6
-rw-r--r--shell/ev-window.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7a8d135..7bf9da2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2005-10-12 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
+ * shell/ev-window.c: (ev_window_setup_document):
+
+ Fixed warnings on reload and probably crash reason.
+
+2005-10-12 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
+
* properties/ev-properties-view.c:
(ev_properties_view_format_date):
diff --git a/shell/ev-window.c b/shell/ev-window.c
index d3ac46a..d1fa8a2 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -698,8 +698,8 @@ ev_window_setup_document (EvWindow *ev_window)
ev_view_set_document (view, document);
}
- ev_window_title_set_uri (ev_window->priv->title, ev_window->priv->uri);
ev_window_title_set_document (ev_window->priv->title, document);
+ ev_window_title_set_uri (ev_window->priv->title, ev_window->priv->uri);
action = gtk_action_group_get_action (ev_window->priv->action_group, PAGE_SELECTOR_ACTION);
ev_page_action_set_document (EV_PAGE_ACTION (action), document);
update_action_sensitivity (ev_window);