summaryrefslogtreecommitdiffstats
path: root/src/style.cpp
diff options
context:
space:
mode:
authorsu_v <suv-sf@users.sourceforge.net>2012-09-25 20:34:14 +0000
committer~suv <suv-sf@users.sourceforge.net>2012-09-25 20:34:14 +0000
commit136a8737897b8340def4bb09a85d12824d9b50bd (patch)
tree5bb55cf1ef167a5127125d4ee74a7a5f173df20e /src/style.cpp
parentFix pointer issue in EMF code (diff)
downloadinkscape-136a8737897b8340def4bb09a85d12824d9b50bd.tar.gz
inkscape-136a8737897b8340def4bb09a85d12824d9b50bd.zip
revert changes not strictly required for EMF support
(bzr r11668.1.12)
Diffstat (limited to 'src/style.cpp')
-rw-r--r--src/style.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/style.cpp b/src/style.cpp
index ab8b646aa..616474298 100644
--- a/src/style.cpp
+++ b/src/style.cpp
@@ -1236,9 +1236,7 @@ sp_style_merge_property(SPStyle *style, gint id, gchar const *val)
case SP_PROP_COLOR_INTERPOLATION_FILTERS:
// We read it but issue warning
SPS_READ_IENUM_IF_UNSET(&style->color_interpolation_filters, val, enum_color_interpolation, true);
- static bool blab=true; // eliminate annoying repeated messages to console
- if( blab && style->color_interpolation_filters.value != SP_CSS_COLOR_INTERPOLATION_SRGB ) {
- blab = false;
+ if( style->color_interpolation_filters.value != SP_CSS_COLOR_INTERPOLATION_SRGB ) {
g_warning("Inkscape currently only supports color-interpolation-filters = sRGB");
}
break;