Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/lexborisov/Modest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/mycss/property/parser_url.c')
-rw-r--r--source/mycss/property/parser_url.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/mycss/property/parser_url.c b/source/mycss/property/parser_url.c
index aebfa6f..3fe2c70 100644
--- a/source/mycss/property/parser_url.c
+++ b/source/mycss/property/parser_url.c
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2016 Alexander Borisov
+ Copyright (C) 2016-2017 Alexander Borisov
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
@@ -55,7 +55,7 @@ bool mycss_property_parser_url_string(mycss_entry_t* entry, mycss_token_t* token
return false;
}
- myhtml_string_t *str = mycss_values_create(entry, sizeof(myhtml_string_t));
+ mycore_string_t *str = mycss_values_create(entry, sizeof(mycore_string_t));
mycss_token_data_to_string(entry, token, str, true, false);
mycss_declaration_entry_t* declr_entry = entry->declaration->entry_last;