summaryrefslogtreecommitdiff
path: root/gtk/gtkaboutdialog.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2020-07-24 15:54:49 +0200
committerBenjamin Otte <otte@redhat.com>2020-07-25 00:47:36 +0200
commitd7266b25ba5f2f21a5bd19d0fb88aca530e4d265 (patch)
tree8dc515efd6e0c0b0da1d7e02049f284edd6050ff /gtk/gtkaboutdialog.c
parent46423e614d4fcf142d9578d4788dde664ea280f9 (diff)
downloadgtk+-d7266b25ba5f2f21a5bd19d0fb88aca530e4d265.tar.gz
Replace "gint" with "int"
Diffstat (limited to 'gtk/gtkaboutdialog.c')
-rw-r--r--gtk/gtkaboutdialog.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/gtk/gtkaboutdialog.c b/gtk/gtkaboutdialog.c
index 473cf71b46..7aa62b5072 100644
--- a/gtk/gtkaboutdialog.c
+++ b/gtk/gtkaboutdialog.c
@@ -249,8 +249,8 @@ static void follow_if_link (GtkAboutDialog
GtkTextIter *iter);
static void set_cursor_if_appropriate (GtkAboutDialog *about,
GtkTextView *text_view,
- gint x,
- gint y);
+ int x,
+ int y);
static void populate_credits_page (GtkAboutDialog *about);
static void populate_license_page (GtkAboutDialog *about);
static void populate_system_page (GtkAboutDialog *about);
@@ -1728,8 +1728,8 @@ gtk_about_dialog_set_logo_icon_name (GtkAboutDialog *about,
if (icon_name)
{
GtkIconTheme *icon_theme = gtk_icon_theme_get_for_display (gtk_widget_get_display (GTK_WIDGET (about)));
- gint *sizes = gtk_icon_theme_get_icon_sizes (icon_theme, icon_name);
- gint i, best_size = 0;
+ int *sizes = gtk_icon_theme_get_icon_sizes (icon_theme, icon_name);
+ int i, best_size = 0;
for (i = 0; sizes[i]; i++)
{
@@ -1842,7 +1842,7 @@ text_view_released (GtkGestureClick *gesture,
GtkWidget *text_view;
GtkTextIter start, end, iter;
GtkTextBuffer *buffer;
- gint tx, ty;
+ int tx, ty;
if (gtk_gesture_single_get_current_button (GTK_GESTURE_SINGLE (gesture)) != GDK_BUTTON_PRIMARY)
return;
@@ -1867,8 +1867,8 @@ text_view_released (GtkGestureClick *gesture,
static void
set_cursor_if_appropriate (GtkAboutDialog *about,
GtkTextView *text_view,
- gint x,
- gint y)
+ int x,
+ int y)
{
GSList *tags = NULL, *tagp = NULL;
GtkTextIter iter;
@@ -1908,7 +1908,7 @@ text_view_motion (GtkEventControllerMotion *motion,
double y,
GtkAboutDialog *about)
{
- gint tx, ty;
+ int tx, ty;
GtkWidget *widget;
widget = gtk_event_controller_get_widget (GTK_EVENT_CONTROLLER (motion));
@@ -2045,7 +2045,7 @@ text_buffer_new (GtkAboutDialog *about,
static void
add_credits_section (GtkAboutDialog *about,
GtkGrid *grid,
- gint *row,
+ int *row,
gchar *title,
gchar **people)
{
@@ -2173,7 +2173,7 @@ add_credits_section (GtkAboutDialog *about,
static void
populate_credits_page (GtkAboutDialog *about)
{
- gint row;
+ int row;
row = 0;