X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Ft-test-options.c;h=1e44c0eb05829dcaf698d63adc034ef3717f23e1;hb=33790599fcfd2de8553568801791b78704aae4de;hp=d4656bf4a457bc811a08219df7624e32ce610ca1;hpb=efcd93af16dfc6c6c9f60b71d94cc091d2417e17;p=pspp diff --git a/src/ui/gui/t-test-options.c b/src/ui/gui/t-test-options.c index d4656bf4a4..1e44c0eb05 100644 --- a/src/ui/gui/t-test-options.c +++ b/src/ui/gui/t-test-options.c @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2007 Free Software Foundation + Copyright (C) 2007, 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 @@ -21,6 +21,7 @@ #include "psppire-dialog.h" #include +#include "builder-wrapper.h" #include "helper.h" #include "t-test-options.h" @@ -61,7 +62,12 @@ tt_options_dialog_create (GtkWindow *parent) tto->xml = builder_new ("t-test.ui"); tto->confidence = - psppire_scanf_new (_("Confidence Interval: %2d %%"), &tto->conf_percent); + psppire_scanf_new (_("Con_fidence Interval: %2d %%"), &tto->conf_percent); + + g_object_set (tto->confidence, + "use-underline", TRUE, + "mnemonic-widget", psppire_scanf_get_child (tto->confidence, 0), + NULL); tto->dialog = get_widget_assert (tto->xml, "options-dialog");