summaryrefslogtreecommitdiff
path: root/plugins/dexbnf/type.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/dexbnf/type.c')
-rw-r--r--plugins/dexbnf/type.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/dexbnf/type.c b/plugins/dexbnf/type.c
index ff9af09..a6ce838 100644
--- a/plugins/dexbnf/type.c
+++ b/plugins/dexbnf/type.c
@@ -93,7 +93,7 @@ static GDataType *dtd_full_class_name(input_buffer *buffer)
{
save_input_buffer_pos(buffer, &saved);
- next = text_input_buffer_next_char(buffer);
+ next = get_input_buffer_next_char(buffer);
if (next != '/')
{
@@ -151,7 +151,7 @@ GDataType *dtd_type_descriptor(input_buffer *buffer)
*
*/
- ahead = text_input_buffer_next_char(buffer);
+ ahead = get_input_buffer_next_char(buffer);
if (ahead == 'V')
result = g_basic_type_new(BTP_VOID);
@@ -197,7 +197,7 @@ static GDataType *dtd_field_type_descriptor(input_buffer *buffer, char ahead)
while (ahead == '[')
{
dim++;
- ahead = text_input_buffer_next_char(buffer);
+ ahead = get_input_buffer_next_char(buffer);
}
descriptor = dtd_non_array_field_type_descriptor(buffer, ahead);
@@ -299,7 +299,7 @@ static GDataType *dtd_non_array_field_type_descriptor(input_buffer *buffer, char
if (result != NULL)
{
- check = text_input_buffer_next_char(buffer);
+ check = get_input_buffer_next_char(buffer);
if (check != ';')
{