X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire.c;h=9a341ec424da1922d5246d2b9e1042f86c1c290a;hb=2c71feac2da7abc2cd178b1ff30e0f217c3b6d86;hp=ae962e66fcc408c8e56ded614754f219dbf319db;hpb=b3cd77d4190ad01f3297eb82ffb5053c536a427a;p=pspp-builds.git diff --git a/src/ui/gui/psppire.c b/src/ui/gui/psppire.c index ae962e66..9a341ec4 100644 --- a/src/ui/gui/psppire.c +++ b/src/ui/gui/psppire.c @@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ - #include #include @@ -34,7 +33,6 @@ #include "psppire-dict.h" #include "psppire-var-store.h" #include "psppire-data-store.h" - #include "helper.h" #include "data-sheet.h" #include "var-sheet.h" @@ -74,10 +72,12 @@ give_help(void) popup_message(&m); } +PsppireVarStore *var_store = 0; + int main(int argc, char *argv[]) { - PsppireVarStore *var_store ; + GtkWidget *data_editor ; GtkSheet *var_sheet ; GtkSheet *data_sheet ; @@ -92,6 +92,7 @@ main(int argc, char *argv[]) setlocale (LC_NUMERIC, "C"); bindtextdomain (PACKAGE, locale_dir); + textdomain (PACKAGE); if ( ! parse_command_line(&argc, &argv, &filename, &err) ) @@ -100,13 +101,12 @@ main(int argc, char *argv[]) return 1; } + glade_init(); settings_init(); - - /* set_pspp_locale("da_DK"); */ @@ -115,6 +115,8 @@ main(int argc, char *argv[]) the_dictionary = psppire_dict_new(); + bind_textdomain_codeset(PACKAGE, "UTF-8"); + /* Create the model for the var_sheet */ var_store = psppire_var_store_new(the_dictionary);