summaryrefslogtreecommitdiffstats
path: root/src/libnrtype
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2015-10-15 11:52:47 +0000
committertavmjong-free <tavmjong@free.fr>2015-10-15 11:52:47 +0000
commitb80f68e9585593a78bad9ae34385cbebe780299a (patch)
tree701aa7c5bc592d4b511e8ac088194be4a9a849b4 /src/libnrtype
parentAdd 'transform-box' to CSS properties. (diff)
downloadinkscape-b80f68e9585593a78bad9ae34385cbebe780299a.tar.gz
inkscape-b80f68e9585593a78bad9ae34385cbebe780299a.zip
Add new 'writing-mode' values, remove 'block-progression', fix a few typos.
(bzr r14416)
Diffstat (limited to 'src/libnrtype')
-rw-r--r--src/libnrtype/Layout-TNG-Input.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/libnrtype/Layout-TNG-Input.cpp b/src/libnrtype/Layout-TNG-Input.cpp
index c9cfe81cc..9c2fc5c11 100644
--- a/src/libnrtype/Layout-TNG-Input.cpp
+++ b/src/libnrtype/Layout-TNG-Input.cpp
@@ -172,11 +172,6 @@ float Layout::InputStreamTextSource::styleComputeFontSize() const
return medium_font_size * inherit_multiplier;
}
-static const Layout::EnumConversionItem enum_convert_spstyle_block_progression_to_direction[] = {
- {SP_CSS_BLOCK_PROGRESSION_TB, Layout::TOP_TO_BOTTOM},
- {SP_CSS_BLOCK_PROGRESSION_LR, Layout::LEFT_TO_RIGHT},
- {SP_CSS_BLOCK_PROGRESSION_RL, Layout::RIGHT_TO_LEFT}};
-
static const Layout::EnumConversionItem enum_convert_spstyle_writing_mode_to_direction[] = {
{SP_CSS_WRITING_MODE_LR_TB, Layout::TOP_TO_BOTTOM},
{SP_CSS_WRITING_MODE_RL_TB, Layout::TOP_TO_BOTTOM},
@@ -190,8 +185,6 @@ Layout::Direction Layout::InputStreamTextSource::styleGetBlockProgression() cons
SPStyle const *this_style = style;
for ( ; ; ) {
- if (this_style->block_progression.set)
- return (Layout::Direction)_enum_converter(this_style->block_progression.computed, enum_convert_spstyle_block_progression_to_direction, sizeof(enum_convert_spstyle_block_progression_to_direction)/sizeof(enum_convert_spstyle_block_progression_to_direction[0]));
if (this_style->writing_mode.set)
return (Layout::Direction)_enum_converter(this_style->writing_mode.computed, enum_convert_spstyle_writing_mode_to_direction, sizeof(enum_convert_spstyle_writing_mode_to_direction)/sizeof(enum_convert_spstyle_writing_mode_to_direction[0]));
if (this_style->object == NULL || this_style->object->parent == NULL) break;