From 6b568905ae43d8b982719b78bb001903a8e4cfbc Mon Sep 17 00:00:00 2001 From: Maren Hachmann Date: Sat, 4 Nov 2017 16:18:30 +0000 Subject: Fix typo in line spacing tool tip --- src/widgets/text-toolbar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/widgets') diff --git a/src/widgets/text-toolbar.cpp b/src/widgets/text-toolbar.cpp index 8c7bec75b..9e138bb08 100644 --- a/src/widgets/text-toolbar.cpp +++ b/src/widgets/text-toolbar.cpp @@ -2359,7 +2359,7 @@ void sp_text_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainActions, GObje InkSelectOneAction* act = InkSelectOneAction::create( "TextLineSpacingAction", // Name _("Line Spacing Mode"), // Label - _("How should multiple baselines be spaced?\n Adapative: Line spacing adapts to font size.\n Minimum: Like Adaptive but with a set minimum.\n Even: Evenly spaced.\n Adjustable: No restrictions."), // Tooltip + _("How should multiple baselines be spaced?\n Adaptive: Line spacing adapts to font size.\n Minimum: Like Adaptive, but with a set minimum.\n Even: Evenly spaced.\n Adjustable: No restrictions."), // Tooltip "Not Used", // Icon store ); // Tree store act->use_radio( false ); -- cgit v1.2.3 From 2659ce5a325688a3db9900d6d662e92048f0539e Mon Sep 17 00:00:00 2001 From: Unknown Date: Tue, 7 Nov 2017 13:55:26 -0500 Subject: Misc. typos Found using `codespell -q 3 -w --skip="*.svg,*.po,*.ts,./share/tutorials,./src/libavoid,./packaging/win32/languages,./man,./src/2geom" -I ../inkscape-whitelist.txt` whereby whitelist file contained: ``` dum iff glight substract te upto ``` --- src/widgets/ege-adjustment-action.cpp | 2 +- src/widgets/ege-adjustment-action.h | 2 +- src/widgets/fill-style.cpp | 2 +- src/widgets/gradient-toolbar.cpp | 2 +- src/widgets/paint-selector.cpp | 2 +- src/widgets/sp-color-selector.cpp | 2 +- src/widgets/stroke-marker-selector.h | 2 +- src/widgets/stroke-style.cpp | 2 +- src/widgets/text-toolbar.cpp | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) (limited to 'src/widgets') diff --git a/src/widgets/ege-adjustment-action.cpp b/src/widgets/ege-adjustment-action.cpp index 597c697cb..3d46fd81d 100644 --- a/src/widgets/ege-adjustment-action.cpp +++ b/src/widgets/ege-adjustment-action.cpp @@ -779,7 +779,7 @@ static void value_changed_cb( GtkSpinButton* spin, EgeAdjustmentAction* act ) if (GTK_IS_EDITABLE(spin) && gtk_editable_get_selection_bounds (GTK_EDITABLE(spin), &start, &end) && start != end) { // #167846, #363000 If the spin button has a selection, its probably - // because we got here from a Tab key from another spin, if so dont defocus + // because we got here from a Tab key from another spin, if so don't defocus return; } ege_adjustment_action_defocus( act ); diff --git a/src/widgets/ege-adjustment-action.h b/src/widgets/ege-adjustment-action.h index 8cfaa3e52..5cb21a481 100644 --- a/src/widgets/ege-adjustment-action.h +++ b/src/widgets/ege-adjustment-action.h @@ -96,7 +96,7 @@ GType ege_adjustment_action_get_type( void ); /* * Note: This normally could be implemented via a GType property for the class to construct, - * but gtkmm classes implemented in C++ only will often not funciton properly. + * but gtkmm classes implemented in C++ only will often not function properly. * */ diff --git a/src/widgets/fill-style.cpp b/src/widgets/fill-style.cpp index 8946eb4b3..c61a857e7 100644 --- a/src/widgets/fill-style.cpp +++ b/src/widgets/fill-style.cpp @@ -733,7 +733,7 @@ void FillNStroke::updateFromPaint() if (!pattern) { /* No Pattern in paint selector should mean that we just - * changed mode - dont do jack. + * changed mode - don't do jack. */ } else { diff --git a/src/widgets/gradient-toolbar.cpp b/src/widgets/gradient-toolbar.cpp index 196264315..976423aaf 100644 --- a/src/widgets/gradient-toolbar.cpp +++ b/src/widgets/gradient-toolbar.cpp @@ -669,7 +669,7 @@ static void select_stop_by_drag(GtkWidget *combo_box, SPGradient *gradient, Tool } if (n > 1) { - // Mulitple stops selected + // Multiple stops selected GtkListStore *store = (GtkListStore *)gtk_combo_box_get_model(GTK_COMBO_BOX(combo_box)); if (!store) { return; diff --git a/src/widgets/paint-selector.cpp b/src/widgets/paint-selector.cpp index 4457b712d..840a64f95 100644 --- a/src/widgets/paint-selector.cpp +++ b/src/widgets/paint-selector.cpp @@ -572,7 +572,7 @@ sp_paint_selector_clear_frame(SPPaintSelector *psel) if (psel->selector) { //This is a hack to work around GtkNotebook bug in ColorSelector. Is sends signal switch-page on destroy - //The widget is hidden firts so it can recognize that it should not process signals from notebook child + //The widget is hidden first so it can recognize that it should not process signals from notebook child gtk_widget_set_visible(psel->selector, false); gtk_widget_destroy(psel->selector); psel->selector = NULL; diff --git a/src/widgets/sp-color-selector.cpp b/src/widgets/sp-color-selector.cpp index 159350012..8a30b276b 100644 --- a/src/widgets/sp-color-selector.cpp +++ b/src/widgets/sp-color-selector.cpp @@ -248,7 +248,7 @@ void ColorSelector::_updateInternals( const SPColor& color, gfloat alpha, gboole gboolean grabbed = held && !_held; gboolean released = !held && _held; - // Store these before emmiting any signals + // Store these before emitting any signals _held = held; if ( colorDifferent ) { diff --git a/src/widgets/stroke-marker-selector.h b/src/widgets/stroke-marker-selector.h index 24389526c..fb68aad58 100644 --- a/src/widgets/stroke-marker-selector.h +++ b/src/widgets/stroke-marker-selector.h @@ -66,7 +66,7 @@ private: class MarkerColumns : public Gtk::TreeModel::ColumnRecord { public: Gtk::TreeModelColumn label; - Gtk::TreeModelColumn marker; // ustring doesnt work here on windows due to unicode + Gtk::TreeModelColumn marker; // ustring doesn't work here on windows due to unicode Gtk::TreeModelColumn stock; Gtk::TreeModelColumn image; Gtk::TreeModelColumn history; diff --git a/src/widgets/stroke-style.cpp b/src/widgets/stroke-style.cpp index 3115a32db..fba6157e2 100644 --- a/src/widgets/stroke-style.cpp +++ b/src/widgets/stroke-style.cpp @@ -578,7 +578,7 @@ StrokeStyle::forkMarker(SPObject *marker, int loc, SPItem *item) /* * Optimization when all the references to this marker are from this item - * then we can reuse it and dont need to fork + * then we can reuse it and don't need to fork */ Glib::ustring urlId = Glib::ustring::format("url(#", marker->getRepr()->attribute("id"), ")"); unsigned int refs = 0; diff --git a/src/widgets/text-toolbar.cpp b/src/widgets/text-toolbar.cpp index 8c7bec75b..2eab6e809 100644 --- a/src/widgets/text-toolbar.cpp +++ b/src/widgets/text-toolbar.cpp @@ -1654,7 +1654,7 @@ static void sp_text_toolbox_selection_changed(Inkscape::Selection */*selection*/ // If unit is set to 'px', use the preferred display unit (if absolute). line_height_unit = prefs->getInt("/tools/text/lineheight/display_unit", SP_CSS_UNIT_PT); - // But not if prefered unit is relative + // But not if preferred unit is relative if (line_height_unit != SP_CSS_UNIT_NONE && line_height_unit != SP_CSS_UNIT_EM && line_height_unit != SP_CSS_UNIT_EX && -- cgit v1.2.3