Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
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
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
-rw-r--r--ChangeLog7
-rw-r--r--backend/pdf/ev-poppler.cc7
2 files changed, 11 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index bf084c5..d5d1a13 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
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.
+
+2008-03-19 Carlos Garcia Campos <carlosgc@gnome.org>
+
* shell/ev-window.c: (image_save_dialog_response_cb):
Do not append the extension to filename when saving an image
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);