summaryrefslogtreecommitdiffstats
path: root/src/widgets
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets')
-rw-r--r--src/widgets/ege-adjustment-action.cpp2
-rw-r--r--src/widgets/ege-adjustment-action.h2
-rw-r--r--src/widgets/fill-style.cpp2
-rw-r--r--src/widgets/gradient-toolbar.cpp2
-rw-r--r--src/widgets/paint-selector.cpp2
-rw-r--r--src/widgets/sp-color-selector.cpp2
-rw-r--r--src/widgets/stroke-marker-selector.h2
-rw-r--r--src/widgets/stroke-style.cpp2
-rw-r--r--src/widgets/text-toolbar.cpp4
9 files changed, 10 insertions, 10 deletions
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<Glib::ustring> label;
- Gtk::TreeModelColumn<const gchar *> marker; // ustring doesnt work here on windows due to unicode
+ Gtk::TreeModelColumn<const gchar *> marker; // ustring doesn't work here on windows due to unicode
Gtk::TreeModelColumn<gboolean> stock;
Gtk::TreeModelColumn<Gtk::Image *> image;
Gtk::TreeModelColumn<gboolean> 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..3ca5bf2dc 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 &&
@@ -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 );