mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-16 21:50:34 +00:00
print backend: Remove an unneeded variable
The G_DEFINE_TYPE macros automate the parent_class handling.
This commit is contained in:
parent
d92a02f7a4
commit
9ebebd48b0
@ -68,8 +68,6 @@ enum
|
||||
PROP_STATUS
|
||||
};
|
||||
|
||||
static GObjectClass *backend_parent_class;
|
||||
|
||||
GQuark
|
||||
gtk_print_backend_error_quark (void)
|
||||
{
|
||||
@ -367,8 +365,6 @@ gtk_print_backend_class_init (GtkPrintBackendClass *class)
|
||||
GObjectClass *object_class;
|
||||
object_class = (GObjectClass *) class;
|
||||
|
||||
backend_parent_class = g_type_class_peek_parent (class);
|
||||
|
||||
object_class->dispose = gtk_print_backend_dispose;
|
||||
object_class->set_property = gtk_print_backend_set_property;
|
||||
object_class->get_property = gtk_print_backend_get_property;
|
||||
@ -473,7 +469,7 @@ gtk_print_backend_dispose (GObject *object)
|
||||
priv->printers = NULL;
|
||||
}
|
||||
|
||||
backend_parent_class->dispose (object);
|
||||
G_OBJECT_CLASS (_gtk_print_backend_module_parent_class)->dispose (object);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user