Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/ev-history.c
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@yandex.ru>2006-11-19 01:42:57 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2006-11-19 01:42:57 (GMT)
commitf00567758aaf39b2003f26b81fff6de6b213f23e (patch)
treedf575a254cf066a62436599f9865c12e085260f6 /shell/ev-history.c
parent8228ff475e7dced57dbaa9550255534d0c275767 (diff)
Use page labels instead of numbers.
2006-11-19 Nickolay V. Shmyrev <nshmyrev@yandex.ru> * shell/ev-history.c: (ev_history_add_page): * shell/ev-history.h: * shell/ev-window.c: (page_changed_cb): Use page labels instead of numbers.
Diffstat (limited to 'shell/ev-history.c')
-rw-r--r--shell/ev-history.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/shell/ev-history.c b/shell/ev-history.c
index 2029d3c..c316c84 100644
--- a/shell/ev-history.c
+++ b/shell/ev-history.c
@@ -164,7 +164,7 @@ ev_history_add_link (EvHistory *history, EvLink *link)
}
void
-ev_history_add_page (EvHistory *history, int page)
+ev_history_add_page (EvHistory *history, int page, const gchar *label)
{
EvLink *link;
EvLinkDest *dest;
@@ -172,7 +172,8 @@ ev_history_add_page (EvHistory *history, int page)
gchar *title;
g_return_if_fail (EV_IS_HISTORY (history));
- title = g_strdup_printf (_("Page: %d"), page);
+
+ title = g_strdup_printf (_("Page: %s"), label);
dest = ev_link_dest_new_page (page);
action = ev_link_action_new_dest (dest);