diff options
author | Timm Bäder <mail@baedert.org> | 2019-08-22 12:41:39 +0200 |
---|---|---|
committer | Timm Bäder <mail@baedert.org> | 2019-09-09 17:36:23 +0200 |
commit | 4cc4868e93e3b79b526ebba802a28cbe96056691 (patch) | |
tree | 032b8a79fef17a4b891aeb4ca423ceab793490e8 /tests/testclipboard2.c | |
parent | 6c90d3a1b632b0f156b4d54786af096591e1aa46 (diff) | |
download | gtk+-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 'tests/testclipboard2.c')
-rw-r--r-- | tests/testclipboard2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testclipboard2.c b/tests/testclipboard2.c index 86c0e5dc3f..035afd6b1a 100644 --- a/tests/testclipboard2.c +++ b/tests/testclipboard2.c @@ -202,7 +202,7 @@ get_contents_widget (GdkClipboard *clipboard) gtk_stack_add_titled (GTK_STACK (stack), child, "image", "Image"); child = gtk_label_new (NULL); - gtk_label_set_line_wrap (GTK_LABEL (child), TRUE); + gtk_label_set_wrap (GTK_LABEL (child), TRUE); gtk_stack_add_titled (GTK_STACK (stack), child, "text", "Text"); return stack; |