diff options
| author | Marc Jeanmougin <marc@jeanmougin.fr> | 2019-10-04 22:40:21 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marc@jeanmougin.fr> | 2019-10-04 23:06:06 +0000 |
| commit | 23a10ac14b30d5221c0cc105ef1e8cacec5e5945 (patch) | |
| tree | 313034ac0821f5987c813a2f8911de76632b1bdb /src/3rdparty | |
| parent | Allow know total process timmed in multiple operations on canvas rendering (diff) | |
| download | inkscape-23a10ac14b30d5221c0cc105ef1e8cacec5e5945.tar.gz inkscape-23a10ac14b30d5221c0cc105ef1e8cacec5e5945.zip | |
Fix typos
Diffstat (limited to 'src/3rdparty')
| -rw-r--r-- | src/3rdparty/libcroco/cr-fonts.c | 2 | ||||
| -rw-r--r-- | src/3rdparty/libcroco/cr-style.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/3rdparty/libcroco/cr-fonts.c b/src/3rdparty/libcroco/cr-fonts.c index 78e261149..db41b9b43 100644 --- a/src/3rdparty/libcroco/cr-fonts.c +++ b/src/3rdparty/libcroco/cr-fonts.c @@ -685,7 +685,7 @@ cr_font_size_adjust_to_string (CRFontSizeAdjust const * a_this) if (a_this->num) str = (gchar *) cr_num_to_string (a_this->num); else - str = g_strdup ("unknow font-size-adjust property value"); /* Should raise an error no?*/ + str = g_strdup ("unknown font-size-adjust property value"); /* Should raise an error no?*/ break; case FONT_SIZE_ADJUST_INHERIT: str = g_strdup ("inherit"); diff --git a/src/3rdparty/libcroco/cr-style.c b/src/3rdparty/libcroco/cr-style.c index ebc669c43..d4dabcfcf 100644 --- a/src/3rdparty/libcroco/cr-style.c +++ b/src/3rdparty/libcroco/cr-style.c @@ -982,7 +982,7 @@ set_prop_float (CRStyle * a_style, CRTerm * a_value) || !a_value->content.str || !a_value->content.str->stryng || !a_value->content.str->stryng->str) { - /*unknow type, the float type is set to it's default value */ + /*unknown type, the float type is set to it's default value */ return CR_OK; } @@ -2636,7 +2636,7 @@ cr_style_white_space_type_to_string (enum CRWhiteSpaceType a_code, str = (gchar *) "inherited"; break; default: - str = (gchar *) "unknow white space property value"; + str = (gchar *) "unknown white space property value"; break; } cr_utils_dump_n_chars2 (' ', a_str, a_nb_indent); |
