GtkPrintOperation: unseal private pointer

This commit is contained in:
Javier Jardón
2010-07-14 02:07:04 +02:00
parent 6fae72c419
commit 9db9c5f247
2 changed files with 5 additions and 3 deletions

View File

@ -34,7 +34,6 @@
#define SHOW_PROGRESS_TIME 1200 #define SHOW_PROGRESS_TIME 1200
#define GTK_PRINT_OPERATION_GET_PRIVATE(obj)(G_TYPE_INSTANCE_GET_PRIVATE ((obj), GTK_TYPE_PRINT_OPERATION, GtkPrintOperationPrivate))
enum enum
{ {
@ -155,7 +154,9 @@ gtk_print_operation_init (GtkPrintOperation *operation)
GtkPrintOperationPrivate *priv; GtkPrintOperationPrivate *priv;
const char *appname; const char *appname;
priv = operation->priv = GTK_PRINT_OPERATION_GET_PRIVATE (operation); priv = operation->priv = G_TYPE_INSTANCE_GET_PRIVATE (operation,
GTK_TYPE_PRINT_OPERATION,
GtkPrintOperationPrivate);
priv->status = GTK_PRINT_STATUS_INITIAL; priv->status = GTK_PRINT_STATUS_INITIAL;
priv->status_string = g_strdup (""); priv->status_string = g_strdup ("");

View File

@ -79,7 +79,8 @@ struct _GtkPrintOperation
{ {
GObject parent_instance; GObject parent_instance;
GtkPrintOperationPrivate *GSEAL (priv); /* <private> */
GtkPrintOperationPrivate *priv;
}; };
struct _GtkPrintOperationClass struct _GtkPrintOperationClass