Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog10
-rw-r--r--pdf/ev-poppler.cc4
-rw-r--r--shell/ev-window.c4
3 files changed, 15 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 9f2cc8c..a9aa4d0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2006-07-26 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
+
+ * pdf/ev-poppler.cc:
+ * shell/ev-window.c: (do_action_named):
+
+ We should be more clear about bugzilla. See the
+ poppler bug #7623.
+
2006-07-23 Carlos Garcia Campos <carlosgc@gnome.org>
* configure.ac:
@@ -9,7 +17,7 @@
Use GtkPrint instead of GnomePrint when it's available. Fixes bug
#348422
-
+
2006-07-17 Carlos Garcia Campos <carlosgc@gnome.org>
* data/evince-toolbar.xml: Add preview toolbar (hidden by default)
diff --git a/pdf/ev-poppler.cc b/pdf/ev-poppler.cc
index a3d3872..f6b1d64 100644
--- a/pdf/ev-poppler.cc
+++ b/pdf/ev-poppler.cc
@@ -831,7 +831,9 @@ ev_link_dest_from_dest (PopplerDest *dest)
}
if (unimplemented_dest) {
- g_warning ("Unimplemented destination: %s, please post a bug report with a testcase.",
+ g_warning ("Unimplemented named action: %s, please post a "
+ "bug report in Evince bugzilla "
+ "(http://bugzilla.gnome.org) with a testcase.",
unimplemented_dest);
}
diff --git a/shell/ev-window.c b/shell/ev-window.c
index 02422e2..65d05fd 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -3591,7 +3591,9 @@ do_action_named (EvWindow *window, EvLinkAction *action)
} else if (g_ascii_strcasecmp (name, "Find") == 0) {
ev_window_cmd_edit_find (NULL, window);
} else {
- g_warning ("Unimplemented named action: %s, please post a bug report with a testcase.",
+ g_warning ("Unimplemented named action: %s, please post a "
+ "bug report in Evince bugzilla "
+ "(http://bugzilla.gnome.org) with a testcase.",
name);
}
}