diff options
author | Javier Jardón <jjardon@gnome.org> | 2020-12-18 08:24:25 +0000 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2020-12-18 08:28:41 +0000 |
commit | c0c1ca9b7aa9ec0faf3ecd00fc7baceeb6c30860 (patch) | |
tree | fbcf5f1a5ac66191327b937b2baa11a2fea51bec /src/msg.c | |
parent | Update Portuguese translation (diff) | |
download | zenity-c0c1ca9b7aa9ec0faf3ecd00fc7baceeb6c30860.tar.gz zenity-c0c1ca9b7aa9ec0faf3ecd00fc7baceeb6c30860.tar.bz2 zenity-c0c1ca9b7aa9ec0faf3ecd00fc7baceeb6c30860.zip |
Fix some compilations warnings
Diffstat (limited to 'src/msg.c')
-rw-r--r-- | src/msg.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -206,8 +206,8 @@ zenity_msg (ZenityData *data, ZenityMsgData *msg_data) { // however, 60 would increase the distance between the icon and the // text, // decreasing to 10 fix it. - gtk_label_set_width_chars (text, 10); - gtk_label_set_max_width_chars (text, 10); + gtk_label_set_width_chars (GTK_LABEL (text), 10); + gtk_label_set_max_width_chars (GTK_LABEL (text), 10); } if (data->modal) |