mirror of https://github.com/GNOME/gimp.git
app: remove obsolete (GtkObject **) casts
This commit is contained in:
parent
5c720fa886
commit
1a04428815
|
@ -164,8 +164,7 @@ gimp_display_shell_scale_dialog (GimpDisplayShell *shell)
|
|||
|
||||
gimp_zoom_model_get_fraction (data->model, &num, &denom);
|
||||
|
||||
data->num_adj = (GtkAdjustment *)
|
||||
gtk_adjustment_new (num, 1, 256, 1, 8, 0);
|
||||
data->num_adj = gtk_adjustment_new (num, 1, 256, 1, 8, 0);
|
||||
spin = gtk_spin_button_new (data->num_adj, 1.0, 0);
|
||||
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spin), TRUE);
|
||||
gtk_entry_set_activates_default (GTK_ENTRY (spin), TRUE);
|
||||
|
@ -176,8 +175,7 @@ gimp_display_shell_scale_dialog (GimpDisplayShell *shell)
|
|||
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
|
||||
gtk_widget_show (label);
|
||||
|
||||
data->denom_adj = (GtkAdjustment *)
|
||||
gtk_adjustment_new (denom, 1, 256, 1, 8, 0);
|
||||
data->denom_adj = gtk_adjustment_new (denom, 1, 256, 1, 8, 0);
|
||||
spin = gtk_spin_button_new (data->denom_adj, 1.0, 0);
|
||||
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spin), TRUE);
|
||||
gtk_entry_set_activates_default (GTK_ENTRY (spin), TRUE);
|
||||
|
@ -189,10 +187,9 @@ gimp_display_shell_scale_dialog (GimpDisplayShell *shell)
|
|||
_("Zoom:"), 0.0, 0.5,
|
||||
hbox, 1, FALSE);
|
||||
|
||||
data->scale_adj = (GtkAdjustment *)
|
||||
gtk_adjustment_new (fabs (shell->other_scale) * 100,
|
||||
100.0 / 256.0, 25600.0,
|
||||
10, 50, 0);
|
||||
data->scale_adj = gtk_adjustment_new (fabs (shell->other_scale) * 100,
|
||||
100.0 / 256.0, 25600.0,
|
||||
10, 50, 0);
|
||||
spin = gtk_spin_button_new (data->scale_adj, 1.0, 2);
|
||||
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spin), TRUE);
|
||||
gtk_entry_set_activates_default (GTK_ENTRY (spin), TRUE);
|
||||
|
|
Loading…
Reference in New Issue