diff options
author | Benjamin Otte <otte@redhat.com> | 2020-07-24 22:32:16 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2020-07-25 00:47:36 +0200 |
commit | 3078b180fe79efd0e58239dabb7098c40aced1a8 (patch) | |
tree | a4ce228bafd8df1eff46d2410554a2b2a3c0f12e /gtk/gtkcombobox.c | |
parent | 556997f9df3b771733fc49a02d5424aee276e29f (diff) | |
download | gtk+-3078b180fe79efd0e58239dabb7098c40aced1a8.tar.gz |
Replace "gdouble" with "double"
Diffstat (limited to 'gtk/gtkcombobox.c')
-rw-r--r-- | gtk/gtkcombobox.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/gtkcombobox.c b/gtk/gtkcombobox.c index 0874726b17..6c66f0a521 100644 --- a/gtk/gtkcombobox.c +++ b/gtk/gtkcombobox.c @@ -235,8 +235,8 @@ static void gtk_combo_box_real_popup (GtkComboBox *combo_box) static gboolean gtk_combo_box_real_popdown (GtkComboBox *combo_box); static gboolean gtk_combo_box_scroll_controller_scroll (GtkEventControllerScroll *scroll, - gdouble dx, - gdouble dy, + double dx, + double dy, GtkComboBox *combo_box); /* listening to the model */ @@ -522,7 +522,7 @@ gtk_combo_box_class_init (GtkComboBoxClass *klass) * { * GtkTreeIter iter; * GtkTreeModel model; - * gdouble value; + * double value; * * model = gtk_combo_box_get_model (combo); * @@ -1664,8 +1664,8 @@ tree_first (GtkComboBox *combo, static gboolean gtk_combo_box_scroll_controller_scroll (GtkEventControllerScroll *scroll, - gdouble dx, - gdouble dy, + double dx, + double dy, GtkComboBox *combo_box) { GtkComboBoxPrivate *priv = gtk_combo_box_get_instance_private (combo_box); |