summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2019-08-17 13:29:31 +0200
committerVictor Kareh <[email protected]>2019-08-20 09:01:31 -0400
commitefef8824d5deb1bcbb77514c7f981f3eb972b979 (patch)
treed78a18677169ecb7ddb90dd55f2d26e6d09acfe7
parenta822bd98aba1b9dd3b778a5b432b9c6d57cd4fce (diff)
downloadmate-settings-daemon-efef8824d5deb1bcbb77514c7f981f3eb972b979.tar.bz2
mate-settings-daemon-efef8824d5deb1bcbb77514c7f981f3eb972b979.tar.xz
system-timezone: avoid 'g_type_class_add_private'
-rw-r--r--plugins/datetime/system-timezone.c20
1 files changed, 8 insertions, 12 deletions
diff --git a/plugins/datetime/system-timezone.c b/plugins/datetime/system-timezone.c
index d9e4909..94e2d9f 100644
--- a/plugins/datetime/system-timezone.c
+++ b/plugins/datetime/system-timezone.c
@@ -76,8 +76,6 @@ static char *files_to_check[CHECK_NB] = {
static GObject *systz_singleton = NULL;
-G_DEFINE_TYPE (SystemTimezone, system_timezone, G_TYPE_OBJECT)
-
typedef struct {
char *tz;
char *env_tz;
@@ -89,6 +87,8 @@ enum {
LAST_SIGNAL
};
+G_DEFINE_TYPE_WITH_PRIVATE (SystemTimezone, system_timezone, G_TYPE_OBJECT)
+
static guint system_timezone_signals[LAST_SIGNAL] = { 0 };
static GObject *system_timezone_constructor (GType type,
@@ -102,8 +102,6 @@ static void system_timezone_monitor_changed (GFileMonitor *handle,
GFileMonitorEvent event,
gpointer user_data);
-#define PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), SYSTEM_TIMEZONE_TYPE, SystemTimezonePrivate))
-
SystemTimezone *
system_timezone_new (void)
{
@@ -117,7 +115,7 @@ system_timezone_get (SystemTimezone *systz)
g_return_val_if_fail (IS_SYSTEM_TIMEZONE (systz), NULL);
- priv = PRIVATE (systz);
+ priv = system_timezone_get_instance_private (systz);
return priv->tz;
}
@@ -128,7 +126,7 @@ system_timezone_get_env (SystemTimezone *systz)
g_return_val_if_fail (IS_SYSTEM_TIMEZONE (systz), NULL);
- priv = PRIVATE (systz);
+ priv = system_timezone_get_instance_private (systz);
return priv->env_tz;
}
@@ -148,15 +146,13 @@ system_timezone_class_init (SystemTimezoneClass *class)
NULL, NULL,
g_cclosure_marshal_VOID__STRING,
G_TYPE_NONE, 1, G_TYPE_STRING);
-
- g_type_class_add_private (class, sizeof (SystemTimezonePrivate));
}
static void
system_timezone_init (SystemTimezone *systz)
{
int i;
- SystemTimezonePrivate *priv = PRIVATE (systz);
+ SystemTimezonePrivate *priv = system_timezone_get_instance_private (systz);
priv->tz = NULL;
priv->env_tz = NULL;
@@ -182,7 +178,7 @@ system_timezone_constructor (GType type,
n_construct_properties,
construct_properties);
- priv = PRIVATE (obj);
+ priv = system_timezone_get_instance_private (SYSTEM_TIMEZONE (obj));
priv->tz = system_timezone_find ();
@@ -228,7 +224,7 @@ static void
system_timezone_finalize (GObject *obj)
{
int i;
- SystemTimezonePrivate *priv = PRIVATE (obj);
+ SystemTimezonePrivate *priv = system_timezone_get_instance_private (SYSTEM_TIMEZONE (obj));
if (priv->tz) {
g_free (priv->tz);
@@ -260,7 +256,7 @@ system_timezone_monitor_changed (GFileMonitor *handle,
GFileMonitorEvent event,
gpointer user_data)
{
- SystemTimezonePrivate *priv = PRIVATE (user_data);
+ SystemTimezonePrivate *priv = system_timezone_get_instance_private (SYSTEM_TIMEZONE (user_data));
char *new_tz;
if (event != G_FILE_MONITOR_EVENT_CHANGED &&