diff options
| author | luz.paz <luzpaz@users.noreply.github.com> | 2018-01-08 21:50:51 +0000 |
|---|---|---|
| committer | luz.paz <luzpaz@users.noreply.github.com> | 2018-01-08 21:50:51 +0000 |
| commit | 202e75590f8200823ef0efd36cc0edbd1bf1edcc (patch) | |
| tree | 1a18f646f7e49b0e1836efd6401793f6e9c38d68 /src/extension/internal | |
| parent | Restore ability to switch mode while using spray tool (is this even useful?). (diff) | |
| download | inkscape-202e75590f8200823ef0efd36cc0edbd1bf1edcc.tar.gz inkscape-202e75590f8200823ef0efd36cc0edbd1bf1edcc.zip | |
Misc. typos
Found via `codespell`
Diffstat (limited to 'src/extension/internal')
| -rw-r--r-- | src/extension/internal/cdr-input.cpp | 2 | ||||
| -rw-r--r-- | src/extension/internal/emf-inout.cpp | 2 | ||||
| -rw-r--r-- | src/extension/internal/emf-print.cpp | 2 | ||||
| -rw-r--r-- | src/extension/internal/filter/blurs.h | 2 | ||||
| -rw-r--r-- | src/extension/internal/latex-text-renderer.cpp | 4 | ||||
| -rw-r--r-- | src/extension/internal/latex-text-renderer.h | 2 | ||||
| -rw-r--r-- | src/extension/internal/vsd-input.cpp | 2 | ||||
| -rw-r--r-- | src/extension/internal/wmf-print.cpp | 6 | ||||
| -rw-r--r-- | src/extension/internal/wpg-input.cpp | 2 |
9 files changed, 12 insertions, 12 deletions
diff --git a/src/extension/internal/cdr-input.cpp b/src/extension/internal/cdr-input.cpp index 2b6714908..7342ad48d 100644 --- a/src/extension/internal/cdr-input.cpp +++ b/src/extension/internal/cdr-input.cpp @@ -2,7 +2,7 @@ * This file came from libwpg as a source, their utility wpg2svg * specifically. It has been modified to work as an Inkscape extension. * The Inkscape extension code is covered by this copyright, but the - * rest is covered by the one bellow. + * rest is covered by the one below. * * Authors: * Fridrich Strba (fridrich.strba@bluewin.ch) diff --git a/src/extension/internal/emf-inout.cpp b/src/extension/internal/emf-inout.cpp index e47ce48bf..69fcd3424 100644 --- a/src/extension/internal/emf-inout.cpp +++ b/src/extension/internal/emf-inout.cpp @@ -3101,7 +3101,7 @@ std::cout << "BEFORE DRAW" /* These should be JUST ASCII, but they might not be... If it holds Utf-8 or plain ASCII the first call will succeed. If not, assume that it holds Latin1. - If that fails then someting is really screwed up! + If that fails then something is really screwed up! */ dup_wt = U_Utf8ToUtf32le((char *) pEmr + pEmr->emrtext.offString, pEmr->emrtext.nChars, NULL); if(!dup_wt)dup_wt = U_Latin1ToUtf32le((char *) pEmr + pEmr->emrtext.offString, pEmr->emrtext.nChars, NULL); diff --git a/src/extension/internal/emf-print.cpp b/src/extension/internal/emf-print.cpp index 147324b4f..58543b67e 100644 --- a/src/extension/internal/emf-print.cpp +++ b/src/extension/internal/emf-print.cpp @@ -1713,7 +1713,7 @@ unsigned int PrintEmf::image( unsigned int w, /** width of bitmap */ unsigned int h, /** height of bitmap */ unsigned int rs, /** row stride (normally w*4) */ - Geom::Affine const &tf_rect, /** affine transform only used for defining location and size of rect, for all other tranforms, use the one from m_tr_stack */ + Geom::Affine const &tf_rect, /** affine transform only used for defining location and size of rect, for all other transforms, use the one from m_tr_stack */ SPStyle const *style) /** provides indirect link to image object */ { double x1, y1, dw, dh; diff --git a/src/extension/internal/filter/blurs.h b/src/extension/internal/filter/blurs.h index 77581ed96..859fadb87 100644 --- a/src/extension/internal/filter/blurs.h +++ b/src/extension/internal/filter/blurs.h @@ -164,7 +164,7 @@ CleanEdges::get_filter_text (Inkscape::Extension::Extension * ext) Combine vertical and horizontal blur Filter's parameters: - * Brighness (0.->10., default 0) -> composite (k3) + * Brightness (0.->10., default 0) -> composite (k3) * Fading (0.->1., default 0) -> composite (k4) * Horizontal blur (0.01->20., default 5) -> blur (stdDeviation) * Vertical blur (0.01->20., default 5) -> blur (stdDeviation) diff --git a/src/extension/internal/latex-text-renderer.cpp b/src/extension/internal/latex-text-renderer.cpp index 960aec7a9..b96025ab8 100644 --- a/src/extension/internal/latex-text-renderer.cpp +++ b/src/extension/internal/latex-text-renderer.cpp @@ -131,7 +131,7 @@ LaTeXTextRenderer::~LaTeXTextRenderer(void) } /** This should create the output LaTeX file, and assign it to _stream. - * @return Returns true when succesfull + * @return Returns true when successful */ bool LaTeXTextRenderer::setTargetFile(gchar const *filename) { @@ -276,7 +276,7 @@ void LaTeXTextRenderer::sp_text_render(SPText *textobj) SPStyle *style = textobj->style; // get position and alignment - // Align vertically on the baseline of the font (retreived from the anchor point) + // Align vertically on the baseline of the font (retrieved from the anchor point) // Align horizontally on anchorpoint gchar const *alignment = NULL; gchar const *alignstack = NULL; diff --git a/src/extension/internal/latex-text-renderer.h b/src/extension/internal/latex-text-renderer.h index b9563b53b..7f0dd9cd9 100644 --- a/src/extension/internal/latex-text-renderer.h +++ b/src/extension/internal/latex-text-renderer.h @@ -60,7 +60,7 @@ protected: FILE * _stream; gchar * _filename; - bool _pdflatex; /** true if ouputting for pdfLaTeX*/ + bool _pdflatex; /** true if outputting for pdfLaTeX*/ LaTeXOmitTextPageState _omittext_state; gulong _omittext_page; diff --git a/src/extension/internal/vsd-input.cpp b/src/extension/internal/vsd-input.cpp index 0d7a467f0..cf5dd64f4 100644 --- a/src/extension/internal/vsd-input.cpp +++ b/src/extension/internal/vsd-input.cpp @@ -2,7 +2,7 @@ * This file came from libwpg as a source, their utility wpg2svg * specifically. It has been modified to work as an Inkscape extension. * The Inkscape extension code is covered by this copyright, but the - * rest is covered by the one bellow. + * rest is covered by the one below. * * Authors: * Fridrich Strba (fridrich.strba@bluewin.ch) diff --git a/src/extension/internal/wmf-print.cpp b/src/extension/internal/wmf-print.cpp index 29dfa2716..3df237ce3 100644 --- a/src/extension/internal/wmf-print.cpp +++ b/src/extension/internal/wmf-print.cpp @@ -1123,7 +1123,7 @@ unsigned int PrintWmf::image( unsigned int w, /** width of bitmap */ unsigned int h, /** height of bitmap */ unsigned int rs, /** row stride (normally w*4) */ - Geom::Affine const &tf_rect, /** affine transform only used for defining location and size of rect, for all other tranforms, use the one from m_tr_stack */ + Geom::Affine const &tf_rect, /** affine transform only used for defining location and size of rect, for all other transforms, use the one from m_tr_stack */ SPStyle const * /*style*/) /** provides indirect link to image object */ { double x1, y1, dw, dh; @@ -1245,7 +1245,7 @@ unsigned int PrintWmf::print_pathv(Geom::PathVector const &pathv, const Geom::Af /** For each segment in the subpath */ - Geom::Point p1 = pit->initialPoint(); // This point is special, it isn't in the interator + Geom::Point p1 = pit->initialPoint(); // This point is special, it isn't in the iterator p1[X] = (p1[X] * PX2WORLD); p1[Y] = (p1[Y] * PX2WORLD); @@ -1289,7 +1289,7 @@ unsigned int PrintWmf::print_pathv(Geom::PathVector const &pathv, const Geom::Af /** For each segment in the subpath */ - Geom::Point p1 = pit->initialPoint(); // This point is special, it isn't in the interator + Geom::Point p1 = pit->initialPoint(); // This point is special, it isn't in the iterator p1[X] = (p1[X] * PX2WORLD); p1[Y] = (p1[Y] * PX2WORLD); diff --git a/src/extension/internal/wpg-input.cpp b/src/extension/internal/wpg-input.cpp index 299614c94..37f26c4bb 100644 --- a/src/extension/internal/wpg-input.cpp +++ b/src/extension/internal/wpg-input.cpp @@ -2,7 +2,7 @@ * This file came from libwpg as a source, their utility wpg2svg * specifically. It has been modified to work as an Inkscape extension. * The Inkscape extension code is covered by this copyright, but the - * rest is covered by the one bellow. + * rest is covered by the one below. * * Authors: * Ted Gould <ted@gould.cx> |
