summaryrefslogtreecommitdiffstats
path: root/src/live_effects
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2018-01-08 21:50:51 +0000
committerluz.paz <luzpaz@users.noreply.github.com>2018-01-08 21:50:51 +0000
commit202e75590f8200823ef0efd36cc0edbd1bf1edcc (patch)
tree1a18f646f7e49b0e1836efd6401793f6e9c38d68 /src/live_effects
parentRestore ability to switch mode while using spray tool (is this even useful?). (diff)
downloadinkscape-202e75590f8200823ef0efd36cc0edbd1bf1edcc.tar.gz
inkscape-202e75590f8200823ef0efd36cc0edbd1bf1edcc.zip
Misc. typos
Found via `codespell`
Diffstat (limited to 'src/live_effects')
-rw-r--r--src/live_effects/lpe-clone-original.cpp2
-rw-r--r--src/live_effects/lpe-powermask.cpp2
-rw-r--r--src/live_effects/parameter/path.cpp2
-rw-r--r--src/live_effects/parameter/powerstrokepointarray.cpp4
4 files changed, 5 insertions, 5 deletions
diff --git a/src/live_effects/lpe-clone-original.cpp b/src/live_effects/lpe-clone-original.cpp
index 5f1f4a08f..3da6dfbe6 100644
--- a/src/live_effects/lpe-clone-original.cpp
+++ b/src/live_effects/lpe-clone-original.cpp
@@ -34,7 +34,7 @@ LPECloneOriginal::LPECloneOriginal(LivePathEffectObject *lpeobject) :
Effect(lpeobject),
linkeditem(_("Linked Item:"), _("Item from which to take the original data"), "linkeditem", &wr, this),
method(_("Shape linked"), _("Shape linked"), "method", CLMConverter, &wr, this, CLM_D),
- attributes("Attributes linked", "Attributes linked, comma separated atributes", "attributes", &wr, this,""),
+ attributes("Attributes linked", "Attributes linked, comma separated attributes", "attributes", &wr, this,""),
style_attributes("Style attributes linked", "Style attributes linked, comma separated attributes like fill, filter, opacity", "style_attributes", &wr, this,""),
allow_transforms(_("Allow transforms"), _("Allow transforms"), "allow_transforms", &wr, this, true)
{
diff --git a/src/live_effects/lpe-powermask.cpp b/src/live_effects/lpe-powermask.cpp
index 883467b6a..f5a419bcb 100644
--- a/src/live_effects/lpe-powermask.cpp
+++ b/src/live_effects/lpe-powermask.cpp
@@ -150,7 +150,7 @@ LPEPowerMask::setMask(){
filter->appendChild(primitive2);
Inkscape::GC::release(primitive2);
}
-//Not sure if finaly need to resurrect this
+//Not sure if finally need to resurrect this
// if(wrap && is_visible){
// Glib::ustring g_data_id = mask_id + (Glib::ustring)"_container";
// if((elemref = document->getObjectById(g_data_id))){
diff --git a/src/live_effects/parameter/path.cpp b/src/live_effects/parameter/path.cpp
index 7dcd85df9..88ba85b48 100644
--- a/src/live_effects/parameter/path.cpp
+++ b/src/live_effects/parameter/path.cpp
@@ -31,7 +31,7 @@
#include "document.h"
#include "document-undo.h"
-// needed for on-canvas editting:
+// needed for on-canvas editing:
#include "ui/tools-switch.h"
#include "ui/shape-editor.h"
diff --git a/src/live_effects/parameter/powerstrokepointarray.cpp b/src/live_effects/parameter/powerstrokepointarray.cpp
index 64c772602..459225bc6 100644
--- a/src/live_effects/parameter/powerstrokepointarray.cpp
+++ b/src/live_effects/parameter/powerstrokepointarray.cpp
@@ -230,7 +230,7 @@ PowerStrokePointArrayParamKnotHolderEntity::knot_click(guint state)
if (state & GDK_MOD1_MASK) {
// delete the clicked knot
std::vector<Geom::Point> & vec = _pparam->_vector;
- if (vec.size() > 1) { //Force dont remove last knot
+ if (vec.size() > 1) { //Force don't remove last knot
vec.erase(vec.begin() + _index);
_pparam->param_set_and_write_new_value(vec);
// shift knots down one index
@@ -242,7 +242,7 @@ PowerStrokePointArrayParamKnotHolderEntity::knot_click(guint state)
}
}
};
- // temporary hide, when knotholder were recreated it finaly drop
+ // temporary hide, when knotholder were recreated it finally drop
this->knot->hide();
}
return;