X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-conf.c;h=d0fc6e9de712ca11ba90c39f6d3b73d1564c1c86;hb=53241f59ac766997bf67870639f70afb82396640;hp=eb65b63ad9ac2d19e59ad422f800932268f88cfe;hpb=44a2389f517a6cc60a2b8b0f1d7da1eabb410133;p=pspp diff --git a/src/ui/gui/psppire-conf.c b/src/ui/gui/psppire-conf.c index eb65b63ad9..d0fc6e9de7 100644 --- a/src/ui/gui/psppire-conf.c +++ b/src/ui/gui/psppire-conf.c @@ -28,44 +28,13 @@ #include "psppire-conf.h" -static void psppire_conf_init (PsppireConf *conf); -static void psppire_conf_class_init (PsppireConfClass *class); +G_DEFINE_TYPE (PsppireConf, psppire_conf, G_TYPE_OBJECT) static void psppire_conf_finalize (GObject *object); static void psppire_conf_dispose (GObject *object); static GObjectClass *parent_class = NULL; - -GType -psppire_conf_get_type (void) -{ - static GType conf_type = 0; - - if (!conf_type) - { - static const GTypeInfo conf_info = - { - sizeof (PsppireConfClass), - NULL, /* base_init */ - NULL, /* base_finalize */ - (GClassInitFunc) psppire_conf_class_init, - NULL, /* class_finalize */ - NULL, /* class_data */ - sizeof (PsppireConf), - 0, - (GInstanceInitFunc) psppire_conf_init, - }; - - conf_type = g_type_register_static (G_TYPE_OBJECT, - "PsppireConf", - &conf_info, 0); - } - - return conf_type; -} - - static void conf_read (PsppireConf *conf) { @@ -81,11 +50,12 @@ flush_conf (PsppireConf *conf) gsize length = 0; gchar *kf = g_key_file_to_data (conf->keyfile, &length, NULL); + GError *err = NULL; - if (! g_file_set_contents (conf->filename, kf, length, NULL)) + if (! g_file_set_contents (conf->filename, kf, length, &err)) { - char *msg = strerror (errno); - g_warning ("Cannot open %s for writing: %s", conf->filename, msg); + g_warning ("Cannot open %s for writing: %s", conf->filename, err->message); + g_error_free (err); } g_free (kf); @@ -144,7 +114,7 @@ psppire_conf_class_init (PsppireConfClass *class) GObjectClass *object_class; parent_class = g_type_class_peek_parent (class); - object_class = (GObjectClass*) class; + object_class = G_OBJECT_CLASS (class); object_class->finalize = psppire_conf_finalize; object_class->dispose = psppire_conf_dispose;