Replace "gint" with "int"

This commit is contained in:
Benjamin Otte
2020-07-24 15:54:49 +02:00
parent 46423e614d
commit d7266b25ba
628 changed files with 7361 additions and 7362 deletions

View File

@@ -182,7 +182,7 @@ match_func (GtkEntryCompletion *completion,
return ret;
}
static gint timer_count = 0;
static int timer_count = 0;
static const char *dynamic_completions[] = {
"GNOME",
@@ -210,12 +210,12 @@ static const char *dynamic_completions[] = {
"zombie"
};
static gint
static int
animation_timer (GtkEntryCompletion *completion)
{
GtkTreeIter iter;
gint n_completions = G_N_ELEMENTS (dynamic_completions);
gint n;
int n_completions = G_N_ELEMENTS (dynamic_completions);
int n;
static GtkListStore *old_store = NULL;
GtkListStore *store = GTK_LIST_STORE (gtk_entry_completion_get_model (completion));