X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fui%2Fgui%2Fpsppire-dialog-action-logistic.c;h=dcff91278a4507e37a2968092055ca7a1d282356;hb=258cbd9cdf386687122b0854274923acafc786d4;hp=5fb557031585ace80aed8b7e99ac1e618f6517c6;hpb=8855cb5d6ff72efd5bdb05b339cf9fb175991d5e;p=pspp diff --git a/src/ui/gui/psppire-dialog-action-logistic.c b/src/ui/gui/psppire-dialog-action-logistic.c index 5fb5570315..dcff91278a 100644 --- a/src/ui/gui/psppire-dialog-action-logistic.c +++ b/src/ui/gui/psppire-dialog-action-logistic.c @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2008, 2010, 2011, 2012 Free Software Foundation + Copyright (C) 2008, 2010, 2011, 2012, 2016 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 @@ -145,14 +145,12 @@ psppire_dialog_action_logistic_activate (PsppireDialogAction *a) psppire_dialog_action_set_valid_predicate (pda, dialog_state_valid); - if (PSPPIRE_DIALOG_ACTION_CLASS (psppire_dialog_action_logistic_parent_class)->activate) - PSPPIRE_DIALOG_ACTION_CLASS (psppire_dialog_action_logistic_parent_class)->activate (pda); } static char * -generate_syntax (PsppireDialogAction *a) +generate_syntax (const PsppireDialogAction *a) { PsppireDialogActionLogistic *rd = PSPPIRE_DIALOG_ACTION_LOGISTIC (a); gchar *text = NULL; @@ -203,7 +201,7 @@ generate_syntax (PsppireDialogAction *a) ds_init_cstr (&opt_str, "\n\t/CRITERIA ="); syntax_gen_pspp (&opt_str, " CUT(%g)", rd->cut_point); syntax_gen_pspp (&opt_str, " ITERATE(%d)", rd->max_iterations); - g_string_append (strx, ds_data (&opt_str)); + g_string_append (strx, ds_cstr (&opt_str)); ds_destroy (&opt_str); if (rd->conf)