X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fcomments-dialog.c;h=306e3b40a20846b3c0512bec74783d19b70315bb;hb=a554ee5cd3f34f39bd202f6a40a79256b537c40d;hp=923953a1514bd34e0d223144ed4d4aaec27107ed;hpb=9e0e4996fad6563f0a1ce628b80db5c23ef8279e;p=pspp diff --git a/src/ui/gui/comments-dialog.c b/src/ui/gui/comments-dialog.c index 923953a151..306e3b40a2 100644 --- a/src/ui/gui/comments-dialog.c +++ b/src/ui/gui/comments-dialog.c @@ -91,11 +91,10 @@ wrap_line (GtkTextBuffer *buffer, void -comments_dialog (GObject *o, gpointer data) +comments_dialog (PsppireDataWindow *de) { GtkTextIter iter; gint response ; - PsppireDataWindow *de = PSPPIRE_DATA_WINDOW (data); struct comment_dialog cd; GtkBuilder *xml = builder_new ("psppire.ui"); @@ -145,7 +144,7 @@ comments_dialog (GObject *o, gpointer data) } cd.xml = xml; - cd.dict = vs->dict; + g_object_get (vs, "dictionary", &cd.dict, NULL); g_signal_connect (buffer, "mark-set", G_CALLBACK (set_column_number), label); @@ -178,7 +177,7 @@ comments_dialog (GObject *o, gpointer data) { gchar *syntax = generate_syntax (&cd); - paste_syntax_in_new_window (syntax); + paste_syntax_to_window (syntax); g_free (syntax); }