summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2019-01-20 14:36:24 +0100
committerlukefromdc <[email protected]>2019-01-22 05:12:05 +0000
commit793cc2539f42982c6c745ca6debf9771d1b590aa (patch)
tree0ff95bf7efecefaa2a7b991e8e45c7650bc8055c
parentab4812acb6862e67a50941ec0a84aa0f9397f438 (diff)
downloadmate-panel-793cc2539f42982c6c745ca6debf9771d1b590aa.tar.bz2
mate-panel-793cc2539f42982c6c745ca6debf9771d1b590aa.tar.xz
eggsmclient: avoid deprecated 'g_type_class_add_private'
-rw-r--r--mate-panel/libegg/eggsmclient.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/mate-panel/libegg/eggsmclient.c b/mate-panel/libegg/eggsmclient.c
index bc8302c3..f66f5a4b 100644
--- a/mate-panel/libegg/eggsmclient.c
+++ b/mate-panel/libegg/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
@@ -399,7 +395,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;