Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/backend
diff options
context:
space:
mode:
authorcarlosgc <carlosgc@e12069bd-dc25-0410-a696-d39a8afcd844>2008-03-14 16:34:49 (GMT)
committer carlosgc <carlosgc@e12069bd-dc25-0410-a696-d39a8afcd844>2008-03-14 16:34:49 (GMT)
commit21cf219ecd37768273ca778c4615b799d4c5f87d (patch)
tree6697862592b166d16b9f0ea37db1ea9c9cf591e5 /backend
parentc06ddead0c34cbbb8d351d54e792f883971f380c (diff)
2008-03-14 Carlos Garcia Campos <carlosgc@gnome.org>
* backend/pdf/ev-poppler.cc: (pdf_selection_render_selection): Fix build with poppler <= 0.7.2 git-svn-id: svn+ssh://svn.gnome.org/svn/evince/trunk@2967 e12069bd-dc25-0410-a696-d39a8afcd844
Diffstat (limited to 'backend')
-rw-r--r--backend/pdf/ev-poppler.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/backend/pdf/ev-poppler.cc b/backend/pdf/ev-poppler.cc
index f50407f..e44a769 100644
--- a/backend/pdf/ev-poppler.cc
+++ b/backend/pdf/ev-poppler.cc
@@ -1902,10 +1902,10 @@ pdf_selection_render_selection (EvSelection *selection,
cairo_t *cr;
#if POPPLER_MAJOR_VERSION <= 6 || (POPPLER_MAJOR_VERSION == 7 && POPPLER_MINOR_VERSION < 2)
- GdkColor **text_color, **base_color;
+ GdkColor text_color, base_color;
- *text_color = text;
- *base_color = base;
+ text_color = *text;
+ base_color = *base;
#else
PopplerColor text_color, base_color;