Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/backend
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2008-03-19 17:21:34 (GMT)
committer Carlos Garcia Campos <carlosgc@src.gnome.org>2008-03-19 17:21:34 (GMT)
commitd7a286b2fc0dd46aaf710ba904d08ec53974c2aa (patch)
tree20106b66f581e1b2d3e270e023b25e2712bf1127 /backend
parent08a9f7ae85046d4b4434927a2f0fbe8642287089 (diff)
Fix warning messages.
2008-03-19 Carlos Garcia Campos <carlosgc@gnome.org> * backend/pdf/ev-poppler.cc: (ev_link_dest_from_dest), (ev_link_from_action): Fix warning messages. svn path=/trunk/; revision=2973
Diffstat (limited to 'backend')
-rw-r--r--backend/pdf/ev-poppler.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/backend/pdf/ev-poppler.cc b/backend/pdf/ev-poppler.cc
index e44a769..72c54c2 100644
--- a/backend/pdf/ev-poppler.cc
+++ b/backend/pdf/ev-poppler.cc
@@ -939,7 +939,7 @@ ev_link_dest_from_dest (PdfDocument *pdf_document,
}
if (unimplemented_dest) {
- g_warning ("Unimplemented named action: %s, please post a "
+ g_warning ("Unimplemented destination: %s, please post a "
"bug report in Evince bugzilla "
"(http://bugzilla.gnome.org) with a testcase.",
unimplemented_dest);
@@ -994,8 +994,9 @@ ev_link_from_action (PdfDocument *pdf_document,
}
if (unimplemented_action) {
- g_warning ("Unimplemented action: %s, please post a bug report with a testcase.",
- unimplemented_action);
+ g_warning ("Unimplemented action: %s, please post a bug report "
+ "in Evince bugzilla (http://bugzilla.gnome.org) "
+ "with a testcase.", unimplemented_action);
}
link = ev_link_new (action->any.title, ev_action);