summaryrefslogtreecommitdiff
path: root/gtk/gtkfilechoosererrorstack.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-07-12 10:43:51 -0400
committerMatthias Clasen <mclasen@redhat.com>2020-07-12 12:15:08 -0400
commitf1188aaeac9967586d9a3ed29ef9d4cecf919aa1 (patch)
treeb939395ab878e41df7007b526ed5e7711462b9b7 /gtk/gtkfilechoosererrorstack.c
parent4dac5c222f66347ea2a11f0d1f0277660c2f5b08 (diff)
downloadgtk+-f1188aaeac9967586d9a3ed29ef9d4cecf919aa1.tar.gz
Fix gtk_file_chooser_error_stack_set_custom_error
This never worked, due to a typo.
Diffstat (limited to 'gtk/gtkfilechoosererrorstack.c')
-rw-r--r--gtk/gtkfilechoosererrorstack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkfilechoosererrorstack.c b/gtk/gtkfilechoosererrorstack.c
index 9020946626..6f9cf89d22 100644
--- a/gtk/gtkfilechoosererrorstack.c
+++ b/gtk/gtkfilechoosererrorstack.c
@@ -148,7 +148,7 @@ void
gtk_file_chooser_error_stack_set_custom_error (GtkFileChooserErrorStack *self,
const char *label_text)
{
- GtkWidget *label = gtk_stack_get_child_by_name (GTK_STACK (self->stack), "cutsom");
+ GtkWidget *label = gtk_stack_get_child_by_name (GTK_STACK (self->stack), "custom");
gtk_label_set_text (GTK_LABEL (label), label_text);