mate-desktop / mate-terminal

The MATE Terminal Emulator
http://www.mate-desktop.org
GNU General Public License v3.0
133 stars 73 forks source link

profile-editor: Remove enum conversion warnings #348

Closed rbuj closed 4 years ago

rbuj commented 4 years ago
profile-editor.c:489:45: warning: implicit conversion from ‘enum <anonymous>’ to ‘GtkEntryIconPosition’ [-Wenum-conversion]
  489 |   gtk_entry_set_icon_from_icon_name (entry, GTK_PACK_END, NULL);
      |                                             ^~~~~~~~~~~~
profile-editor.c:495:45: warning: implicit conversion from ‘enum <anonymous>’ to ‘GtkEntryIconPosition’ [-Wenum-conversion]
  495 |   gtk_entry_set_icon_from_icon_name (entry, GTK_PACK_END, "dialog-warning");
      |                                             ^~~~~~~~~~~~
profile-editor.c:498:43: warning: implicit conversion from ‘enum <anonymous>’ to ‘GtkEntryIconPosition’ [-Wenum-conversion]
  498 |   gtk_entry_set_icon_tooltip_text (entry, GTK_PACK_END, tooltip);
      |                                           ^~~~~~~~~~~~
raveit65 commented 4 years ago

Indeed, wrong enum for GtkEntryIconPosition was used.