Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/ev-page-action.c
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@src.gnome.org>2005-06-28 07:36:08 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2005-06-28 07:36:08 (GMT)
commita50ca0528a09e8e001c4600371048774e4029057 (patch)
tree1e6d5b4db3d863ac9cd102c13b54c8fcd2544e50 /shell/ev-page-action.c
parent1c40ea87925e7951c642694b2743df7550e8562b (diff)
Fix for Bug 309080: crash on window close.
* pdf/ev-poppler.cc: Fix for Bug 309080: crash on window close. * shell/ev-page-action.c: (page_changed_cb): Fix for Bug 309168: Fix build with gcc 2.95. Thanks to jensgr@gmx.net (Jens Granseuer).
Diffstat (limited to 'shell/ev-page-action.c')
-rw-r--r--shell/ev-page-action.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/shell/ev-page-action.c b/shell/ev-page-action.c
index 7975c8a..99f1d6a 100644
--- a/shell/ev-page-action.c
+++ b/shell/ev-page-action.c
@@ -181,12 +181,13 @@ page_changed_cb (EvPageCache *page_cache,
g_assert (proxy);
if (page_cache != NULL && page >= 0) {
-
+ gchar *page_label;
+
gtk_entry_set_width_chars (GTK_ENTRY (proxy->entry),
CLAMP (ev_page_cache_get_max_label_chars (page_cache),
4, 12));
- gchar *page_label = ev_page_cache_get_page_label (page_cache, page);
+ page_label = ev_page_cache_get_page_label (page_cache, page);
gtk_entry_set_text (GTK_ENTRY (proxy->entry), page_label);
gtk_editable_set_position (GTK_EDITABLE (proxy->entry), -1);
g_free (page_label);