~gnome3-team/glade/+git/glade:tintou/no-gtk-missing-image

Last commit made on 2019-11-06
Get this branch:
git clone -b tintou/no-gtk-missing-image https://git.launchpad.net/~gnome3-team/glade/+git/glade

Branch merges

Branch information

Name:
tintou/no-gtk-missing-image
Repository:
lp:~gnome3-team/glade/+git/glade

Recent commits

d9a8f3f... by Corentin Noël

Remove gtk-missing-image usage and update some stock icon names

44b197f... by Victor Toso <email address hidden>

tests: Include back GtkTreeViewColumn

This was removed in ccb3a8c7dcbd7bd for a release due some criticals
which are not happening anymore.

Also fixes:
 > ../tests/add-child.c:156:1: warning: ‘assert_column_parented’ defined
 > but not used [-Wunused-function]
 > 156 | assert_column_parented (GObject *parent,
 > | ^~~~~~~~~~~~~~~~~~~~~~

5f0624c... by Victor Toso <email address hidden>

gtk+: properly cast to avoid warnings

In order to avoid:
 > ../plugins/gtk+/glade-gtk-list-box.c:235:29: warning: passing
 > argument 2 of ‘glade_project_is_selected’ from incompatible
 > pointer type [-Wincompatible-pointer-types]
 >
 > 235 | (project, child) == FALSE)
 > | ^~~~~
 > | |
 > | GtkWidget * {aka struct _GtkWidget *}
 >
 > ../plugins/gtk+/glade-gtk-list-box.c:236:55: warning: passing
 > argument 2 of ‘glade_project_selection_set’ from incompatible
 > pointer type [-Wincompatible-pointer-types]
 >
 > 236 | glade_project_selection_set (project, child, FALSE);
 > | ^~~~~
 > | |
 > | GtkWidget * {aka struct _GtkWidget *}

21551ac... by Victor Toso <email address hidden>

gtk+: workaround truncation warning by being safer

Truncation was somewhat intended as column_name can fit 255 bytes plus
the null termination. Still, there is an easy workaround which is to
ensure that buffer is null terminated and then use strcpy. Should be a
bit safer and faster than strncpy().

 > ../plugins/gtk+/glade-gtk-list-store.c:492:13: warning: ‘strncpy’
 > output may be truncated copying 255 bytes from a string of length
 > 255 [-Wstringop-truncation]
 >
 > 492 | strncpy (column_name, buffer, 255);
 > | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

a554b96... by Victor Toso <email address hidden>

gladeui: remove unused type_func variable

Added in a4cd9074b6e59

e319514... by Daniel Mustieles

Updated Spanish translation

4f32626... by Corentin Noël

Add missing file to POTFILES

a4cd907... by Corentin Noël

gladeui: Ensure that we write the "type-func" property when a get-type-function is defined in the catalog

242364f... by Corentin Noël

Allow to specify placeholder to GtkListBox

3512d2e... by Corentin Noël

gtk+: Allow to use GtkResponseType with GtkDialog and GtkInfobar buttons