summaryrefslogtreecommitdiffstats
path: root/src/ui
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2019-01-14 12:32:38 +0000
committerluz.paz <luzpaz@users.noreply.github.com>2019-01-14 12:32:38 +0000
commitc74cd14f7ec7a98ec1319539faac2fce06f8655c (patch)
treefcaad78e89d45ee7c1ba5304c8a5fe9129775fab /src/ui
parentMerge !482 (diff)
downloadinkscape-c74cd14f7ec7a98ec1319539faac2fce06f8655c.tar.gz
inkscape-c74cd14f7ec7a98ec1319539faac2fce06f8655c.zip
Misc. typo and whitespace fixes
Found via `codespell` and `atom editor`
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/dialog/cssdialog.cpp2
-rw-r--r--src/ui/tool/multi-path-manipulator.cpp4
-rw-r--r--src/ui/view/README2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/dialog/cssdialog.cpp b/src/ui/dialog/cssdialog.cpp
index 9b68c207c..3ad621f06 100644
--- a/src/ui/dialog/cssdialog.cpp
+++ b/src/ui/dialog/cssdialog.cpp
@@ -153,7 +153,7 @@ void CssDialog::css_reset_context(gint css)
const gchar *name = g_quark_to_string(css);
_message_context->setF(
Inkscape::NORMAL_MESSAGE,
- _("Propery <b>%s</b> selected. Press <b>Ctrl+Enter</b> when done editing to commit changes."), name);
+ _("Property <b>%s</b> selected. Press <b>Ctrl+Enter</b> when done editing to commit changes."), name);
}
}
diff --git a/src/ui/tool/multi-path-manipulator.cpp b/src/ui/tool/multi-path-manipulator.cpp
index 08114ac03..90662237e 100644
--- a/src/ui/tool/multi-path-manipulator.cpp
+++ b/src/ui/tool/multi-path-manipulator.cpp
@@ -483,7 +483,7 @@ void MultiPathManipulator::distributeNodes(Geom::Dim2 d)
if (_selection.empty()) return;
_selection.distribute(d);
if (d == Geom::X) {
- _done("Distrubute nodes horizontally");
+ _done("Distribute nodes horizontally");
} else {
_done("Distribute nodes vertically");
}
@@ -827,7 +827,7 @@ void MultiPathManipulator::_commit(CommitEvent cps)
break;
default: return;
}
-
+
_selection.signal_update.emit();
invokeForAll(&PathManipulator::writeXML);
if (key) {
diff --git a/src/ui/view/README b/src/ui/view/README
index a2091cb2f..9316f8bc3 100644
--- a/src/ui/view/README
+++ b/src/ui/view/README
@@ -33,7 +33,7 @@ SPDesktopWidget:
SVGViewWidget:
- Used many places as a convienient way to show an SVG (file dialog, Inkview).
+ Used many places as a convenient way to show an SVG (file dialog, Inkview).
Derived, rather uselessly, from Gtk::Scrollbar.
It no longer is dependent on View (and really doesn't belong here anymore).