forked from AuroraMiddleware/gtk
more of the same
This commit is contained in:
parent
2606a4eb79
commit
c2ef3c76f6
@ -1,5 +1,8 @@
|
||||
2006-05-22 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkprintunixdialog.c (dialog_set_scale): Don't return
|
||||
a value from a void function.
|
||||
|
||||
* gtk/gtkprinter.c (_gtk_printer_prepare_for_print)
|
||||
(_gtk_printer_get_settings_from_options)
|
||||
(_gtk_printer_request_details): Don't return values from void
|
||||
|
@ -1,5 +1,8 @@
|
||||
2006-05-22 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkprintunixdialog.c (dialog_set_scale): Don't return
|
||||
a value from a void function.
|
||||
|
||||
* gtk/gtkprinter.c (_gtk_printer_prepare_for_print)
|
||||
(_gtk_printer_get_settings_from_options)
|
||||
(_gtk_printer_request_details): Don't return values from void
|
||||
|
@ -1655,8 +1655,7 @@ static void
|
||||
dialog_set_scale (GtkPrintUnixDialog *dialog,
|
||||
gdouble val)
|
||||
{
|
||||
return gtk_spin_button_set_value (GTK_SPIN_BUTTON (dialog->priv->scale_spin),
|
||||
val);
|
||||
gtk_spin_button_set_value (GTK_SPIN_BUTTON (dialog->priv->scale_spin), val);
|
||||
}
|
||||
|
||||
static GtkPageSet
|
||||
|
Loading…
Reference in New Issue
Block a user