summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2019-01-19 18:06:03 +0100
committerZenWalker <[email protected]>2019-01-22 09:58:22 +0100
commit68fc43853ee4f7e4114f3c228f0ec2ce6d2b385a (patch)
treec256757e4ef477065ecc32b8dcd1cd9323c41fad
parent2b00f658a9162af62a1318ffd4dcc21563afe198 (diff)
downloadpluma-68fc43853ee4f7e4114f3c228f0ec2ce6d2b385a.tar.bz2
pluma-68fc43853ee4f7e4114f3c228f0ec2ce6d2b385a.tar.xz
eggsmclient: avoid deprecated 'g_type_class_add_private'
-rw-r--r--pluma/smclient/eggsmclient.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/pluma/smclient/eggsmclient.c b/pluma/smclient/eggsmclient.c
index 4fc64dad..e854f992 100644
--- a/pluma/smclient/eggsmclient.c
+++ b/pluma/smclient/eggsmclient.c
@@ -44,9 +44,7 @@ struct _EggSMClientPrivate {
GKeyFile *state_file;
};
-#define EGG_SM_CLIENT_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), EGG_TYPE_SM_CLIENT, EggSMClientPrivate))
-
-G_DEFINE_TYPE (EggSMClient, egg_sm_client, G_TYPE_OBJECT)
+G_DEFINE_TYPE_WITH_PRIVATE (EggSMClient, egg_sm_client, G_TYPE_OBJECT)
static EggSMClient *global_client;
static EggSMClientMode global_client_mode = EGG_SM_CLIENT_MODE_NORMAL;
@@ -62,8 +60,6 @@ egg_sm_client_class_init (EggSMClientClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
- g_type_class_add_private (klass, sizeof (EggSMClientPrivate));
-
/**
* EggSMClient::save_state:
* @client: the client
@@ -374,7 +370,7 @@ egg_sm_client_is_resumed (EggSMClient *client)
GKeyFile *
egg_sm_client_get_state_file (EggSMClient *client)
{
- EggSMClientPrivate *priv = EGG_SM_CLIENT_GET_PRIVATE (client);
+ EggSMClientPrivate *priv = egg_sm_client_get_instance_private (client);
char *state_file_path;
GError *err = NULL;