summaryrefslogtreecommitdiffstats
path: root/src/desktop-style.cpp
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2011-06-20 19:33:57 +0000
committerKrzysztof KosiƄski <tweenk.pl@gmail.com>2011-06-20 19:33:57 +0000
commita39e3c37a508f9a389fc55270ae0336ad2f76f0e (patch)
tree952db81c3238005e975f21845734444bba28ff40 /src/desktop-style.cpp
parentMeasure Tool: support measuring of text elements (without having to manually ... (diff)
parentFix outline view (diff)
downloadinkscape-a39e3c37a508f9a389fc55270ae0336ad2f76f0e.tar.gz
inkscape-a39e3c37a508f9a389fc55270ae0336ad2f76f0e.zip
Merge Cairo rendering branch
(bzr r10326)
Diffstat (limited to 'src/desktop-style.cpp')
-rw-r--r--src/desktop-style.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/desktop-style.cpp b/src/desktop-style.cpp
index 2c20964aa..88ad9ca57 100644
--- a/src/desktop-style.cpp
+++ b/src/desktop-style.cpp
@@ -28,7 +28,7 @@
#include "filters/blend.h"
#include "sp-filter.h"
#include "sp-filter-reference.h"
-#include "sp-gaussian-blur.h"
+#include "filters/gaussian-blur.h"
#include "sp-flowtext.h"
#include "sp-flowregion.h"
#include "sp-flowdiv.h"
@@ -410,7 +410,7 @@ gdouble
stroke_average_width (GSList const *objects)
{
if (g_slist_length ((GSList *) objects) == 0)
- return NR_HUGE;
+ return Geom::infinity();
gdouble avgwidth = 0.0;
bool notstroked = true;
@@ -435,7 +435,7 @@ stroke_average_width (GSList const *objects)
}
if (notstroked)
- return NR_HUGE;
+ return Geom::infinity();
return avgwidth / (g_slist_length ((GSList *) objects) - n_notstroked);
}