summaryrefslogtreecommitdiffstats
path: root/src/desktop-style.cpp
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2010-08-05 00:49:51 +0000
committerKrzysztof KosiƄski <tweenk.pl@gmail.com>2010-08-05 00:49:51 +0000
commit77dc5f1acd4a6b66b2d6fc5c81f7e5c61ef95785 (patch)
tree15c3b32afa8a124f69644c8bd279dd361680974e /src/desktop-style.cpp
parentWholesale cruft removal part 3 (diff)
downloadinkscape-77dc5f1acd4a6b66b2d6fc5c81f7e5c61ef95785.tar.gz
inkscape-77dc5f1acd4a6b66b2d6fc5c81f7e5c61ef95785.zip
Wholesale cruft removal part 4; fix crash when rendering guides
(bzr r9508.1.48)
Diffstat (limited to 'src/desktop-style.cpp')
-rw-r--r--src/desktop-style.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/desktop-style.cpp b/src/desktop-style.cpp
index 1b277a381..f68797d80 100644
--- a/src/desktop-style.cpp
+++ b/src/desktop-style.cpp
@@ -406,7 +406,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;
@@ -431,7 +431,7 @@ stroke_average_width (GSList const *objects)
}
if (notstroked)
- return NR_HUGE;
+ return Geom::infinity();
return avgwidth / (g_slist_length ((GSList *) objects) - n_notstroked);
}