X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fcomments-dialog.c;h=1d31777379a0e3c7b4d3dbe951b44d60d4db4350;hb=159abf428abd3028a73d064508fac95e542d9f09;hp=68249afdcb82d39cdd6a25738287714ba14ad4ed;hpb=d46430e7458fcd65dfdf7928f52f2d06fa60127d;p=pspp diff --git a/src/ui/gui/comments-dialog.c b/src/ui/gui/comments-dialog.c index 68249afdcb..1d31777379 100644 --- a/src/ui/gui/comments-dialog.c +++ b/src/ui/gui/comments-dialog.c @@ -22,7 +22,6 @@ #include "psppire-data-editor.h" #include "executor.h" #include "helper.h" -#include "psppire-var-store.h" #include #include "comments-dialog.h" @@ -104,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)); @@ -144,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);