summaryrefslogtreecommitdiff
path: root/gtk/gtkprintbackend.c
diff options
context:
space:
mode:
authorTimm Bäder <mail@baedert.org>2019-08-22 12:41:39 +0200
committerTimm Bäder <mail@baedert.org>2019-09-09 17:36:23 +0200
commit4cc4868e93e3b79b526ebba802a28cbe96056691 (patch)
tree032b8a79fef17a4b891aeb4ca423ceab793490e8 /gtk/gtkprintbackend.c
parent6c90d3a1b632b0f156b4d54786af096591e1aa46 (diff)
downloadgtk+-4cc4868e93e3b79b526ebba802a28cbe96056691.tar.gz
label: Remove "line" from wrap properties
The property names are "wrap" and "wrap-mode", so it doesn't make sense that the accessors refer to line_wrap and line_wrap_mode.
Diffstat (limited to 'gtk/gtkprintbackend.c')
-rw-r--r--gtk/gtkprintbackend.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkprintbackend.c b/gtk/gtkprintbackend.c
index 06be0798e6..cc2a733af1 100644
--- a/gtk/gtkprintbackend.c
+++ b/gtk/gtkprintbackend.c
@@ -677,7 +677,7 @@ request_password (GtkPrintBackend *backend,
label = gtk_label_new (NULL);
markup = g_markup_printf_escaped ("<span weight=\"bold\" size=\"large\">%s</span>", prompt);
gtk_label_set_markup (GTK_LABEL (label), markup);
- gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
+ gtk_label_set_wrap (GTK_LABEL (label), TRUE);
gtk_widget_set_size_request (GTK_WIDGET (label), 320, -1);
g_free (markup);