X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fcomments-dialog.c;h=1d31777379a0e3c7b4d3dbe951b44d60d4db4350;hb=14c065be90af77f2661d4bf4d35f3ec943fd99bd;hp=69a8096b24f01e11eec4a2b0bb550f16e4eff605;hpb=fe8dc2171009e90d2335f159d05f7e6660e24780;p=pspp diff --git a/src/ui/gui/comments-dialog.c b/src/ui/gui/comments-dialog.c index 69a8096b24..1d31777379 100644 --- a/src/ui/gui/comments-dialog.c +++ b/src/ui/gui/comments-dialog.c @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2007, 2010, 2011 Free Software Foundation + Copyright (C) 2007, 2010, 2011, 2012 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 @@ -17,11 +17,11 @@ #include #include "psppire-dialog.h" -#include "helper.h" +#include "builder-wrapper.h" #include "psppire-data-window.h" #include "psppire-data-editor.h" #include "executor.h" -#include "psppire-var-store.h" +#include "helper.h" #include #include "comments-dialog.h" @@ -103,9 +103,6 @@ comments_dialog (PsppireDataWindow *de) GtkWidget *label = get_widget_assert (xml, "column-number-label"); GtkTextBuffer *buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (textview)); - PsppireVarStore *vs = NULL; - - g_object_get (de->data_editor, "var-store", &vs, NULL); gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (de)); @@ -143,7 +140,7 @@ comments_dialog (PsppireDataWindow *de) } cd.xml = xml; - g_object_get (vs, "dictionary", &cd.dict, NULL); + g_object_get (de->data_editor, "dictionary", &cd.dict, NULL); g_signal_connect (buffer, "mark-set", G_CALLBACK (set_column_number), label);