From 034f353aa9d41d64307c26871fb1921d9650b87d Mon Sep 17 00:00:00 2001 From: Ahmed Toulan Date: Tue, 22 May 2012 16:30:25 +0200 Subject: [PATCH] Fix spelling mistakes --- effects.c | 2 +- gui.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/effects.c b/effects.c index 79fbe4a..32a78cf 100644 --- a/effects.c +++ b/effects.c @@ -1070,7 +1070,7 @@ static EffectSettings noisegate_pluck_settings[] = { }; static EffectSettings noisegate_gate_settings[] = { - {"Treshold", NOISEGATE_GATE_TRESHOLD, NOISEGATE_POSITION, &values_0_to_99}, + {"Threshold", NOISEGATE_GATE_TRESHOLD, NOISEGATE_POSITION, &values_0_to_99}, {"Attack", NOISEGATE_ATTACK, NOISEGATE_POSITION, &values_0_to_99}, {"Release", NOISEGATE_RELEASE, NOISEGATE_POSITION, &values_0_to_99}, {"Attn", NOISEGATE_ATTN, NOISEGATE_POSITION, &values_0_to_99}, diff --git a/gui.c b/gui.c index b9cc8ec..03bc1e7 100644 --- a/gui.c +++ b/gui.c @@ -1385,7 +1385,7 @@ void gui_free() * * Displays dialogbox stating that device is unsupported. * - * \return TRUE if user selects "compability mode", otherwise FALSE. + * \return TRUE if user selects "compatibility mode", otherwise FALSE. **/ gboolean unsupported_device_dialog(Device **device) { @@ -1408,7 +1408,7 @@ gboolean unsupported_device_dialog(Device **device) label = gtk_label_new("Your device appears to be unsupported by gdigi.\n" "As some of the settings may be common between different devices,\n" - "you can now select compability mode with one of the supported devices.\n" + "you can now select compatibility mode with one of the supported devices.\n" "Please take a look at gdigi's HACKING file."); gtk_container_add(GTK_CONTAINER(vbox), label); @@ -1424,7 +1424,7 @@ gboolean unsupported_device_dialog(Device **device) if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) { gint number = gtk_combo_box_get_active(GTK_COMBO_BOX(combo_box)); if (number != -1 && number name); *device = supported_devices[number]; gtk_widget_destroy(dialog);