X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-dialog.c;h=6f27aa54d13e41883c1adb0037acd7c8e6224383;hb=64bcee15a411cbca0f341c17117ff5617b17e516;hp=4bcb5cc92550e2901742ea51840a6c04e2899c9d;hpb=9529d1a99cc7c288d94e5bbdb9f4263bd524da6c;p=pspp diff --git a/src/ui/gui/psppire-dialog.c b/src/ui/gui/psppire-dialog.c index 4bcb5cc925..6f27aa54d1 100644 --- a/src/ui/gui/psppire-dialog.c +++ b/src/ui/gui/psppire-dialog.c @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2007 Free Software Foundation + Copyright (C) 2007, 2010, 2011 Free Software Foundation This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -18,13 +18,12 @@ #include #include -#include -#include #include "psppire-dialog.h" #include "psppire-buttonbox.h" #include "psppire-selector.h" #include "psppire-conf.h" #include +#include "helper.h" static void psppire_dialog_class_init (PsppireDialogClass *); static void psppire_dialog_init (PsppireDialog *); @@ -296,16 +295,16 @@ static gboolean configure_event_callback (GtkDialog *dialog, GdkEvent *event, gpointer data) { - gchar *base = NULL; + const gchar *base; PsppireConf *conf = psppire_conf_new (); - if ( ! GTK_WIDGET_MAPPED (dialog)) + if ( ! gtk_widget_get_mapped (GTK_WIDGET (dialog))) return FALSE; - g_object_get (dialog, "name", &base, NULL); + base = gtk_buildable_get_name (GTK_BUILDABLE (dialog)); - psppire_conf_save_window_geometry (conf, base, event); + psppire_conf_save_window_geometry (conf, base, GTK_WINDOW (dialog)); return FALSE; } @@ -316,9 +315,7 @@ on_realize (GtkWindow *dialog, gpointer data) { PsppireConf *conf = psppire_conf_new (); - const gchar *base = NULL; - - g_object_get (dialog, "name", &base, NULL); + const gchar *base = gtk_buildable_get_name (GTK_BUILDABLE (dialog)); psppire_conf_set_window_geometry (conf, base, dialog); }