Remove unused variable in the CUPS print backend

The variable is a leftover from when we were not using the
G_DEFINE_DYNAMIC_TYPE macro.
This commit is contained in:
Emmanuele Bassi 2018-02-19 02:10:52 +00:00
parent 8f273d5e02
commit b3be9868d8

View File

@ -89,8 +89,6 @@ typedef struct _GtkPrintBackendCupsClass GtkPrintBackendCupsClass;
#define _CUPS_MAP_ATTR_INT(attr, v, a) {if (!g_ascii_strcasecmp (attr->name, (a))) v = attr->values[0].integer;}
#define _CUPS_MAP_ATTR_STR(attr, v, a) {if (!g_ascii_strcasecmp (attr->name, (a))) v = attr->values[0].string.text;}
static GType print_backend_cups_type = 0;
typedef void (* GtkPrintCupsResponseCallbackFunc) (GtkPrintBackend *print_backend,
GtkCupsResult *result,
gpointer user_data);