Index: glib/poppler-form-field.cc =================================================================== RCS file: /cvs/poppler/poppler/glib/poppler-form-field.cc,v retrieving revision 1.1 diff -u -p -r1.1 poppler-form-field.cc --- glib/poppler-form-field.cc 30 Jun 2007 08:25:16 -0000 1.1 +++ glib/poppler-form-field.cc 2 Jul 2007 10:55:57 -0000 @@ -144,7 +144,7 @@ poppler_form_field_text_get_text_type (P else if (text_field->isPassword ()) return POPPLER_FORM_TEXT_PASSWORD; else if (text_field->isFileSelect ()) - return POPPLER_FORM_TEXT_FILESELCT; + return POPPLER_FORM_TEXT_FILE_SELECT; return POPPLER_FORM_TEXT_NORMAL; } Index: glib/poppler-form-field.h =================================================================== RCS file: /cvs/poppler/poppler/glib/poppler-form-field.h,v retrieving revision 1.1 diff -u -p -r1.1 poppler-form-field.h --- glib/poppler-form-field.h 30 Jun 2007 08:25:16 -0000 1.1 +++ glib/poppler-form-field.h 2 Jul 2007 10:55:57 -0000 @@ -43,7 +43,7 @@ typedef enum POPPLER_FORM_TEXT_NORMAL, POPPLER_FORM_TEXT_MULTILINE, POPPLER_FORM_TEXT_PASSWORD, - POPPLER_FORM_TEXT_FILESELCT + POPPLER_FORM_TEXT_FILE_SELECT } PopplerFormTextType; typedef enum Index: glib/test-poppler-glib.c =================================================================== RCS file: /cvs/poppler/poppler/glib/test-poppler-glib.c,v retrieving revision 1.23 diff -u -p -r1.23 test-poppler-glib.c --- glib/test-poppler-glib.c 30 Jun 2007 08:25:16 -0000 1.23 +++ glib/test-poppler-glib.c 2 Jul 2007 10:55:57 -0000 @@ -172,7 +172,7 @@ form_field_text_print (PopplerFormField printf ("\t\tPassword:\t%s\n", type == POPPLER_FORM_TEXT_PASSWORD ? "Yes" : "No"); printf ("\t\tFileSelect:\t%s\n", - type == POPPLER_FORM_TEXT_FILESELCT ? "Yes" : "No"); + type == POPPLER_FORM_TEXT_FILE_SELECT ? "Yes" : "No"); printf ("\t\tDoSpellCheck:\t%s\n", poppler_form_field_text_do_spell_check (field) ? "Yes" : "No"); printf ("\t\tDoScroll:\t%s\n",